Welcome to the largest and most talked about domain name forum in the World!

We are NamePros, the award-winning free community for domain name owners, buyers and website developers. Once registered, you can:
  • Post your domains for sale or for free appraisals.
  • Private message and conduct business with other domain owners.
  • View member-only forums such as 'Legal Issues' and 'Expired Domains' (NOT visible to search engines)
  • Free access our archives of posts
Join now for free


Go Back   NamePros.com > Discussion > Web Design & Development > Programming
New! Use your Facebook, Google, AIM & Yahoo accounts to securely log into this site, click logo to login  

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.



Reply
 
LinkBack Thread Tools
Old 07-02-2009, 09:42 AM   #1 (permalink)
Senior Member
 
Join Date: Jul 2005
Posts: 1,420
176.50 NP$ (Donate)

newsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud of


AIDS/HIV Save a Life
How to decrypt an image

Hi,

Would really appreciate if someone could find a way to decrypt the image url
--Edited--

Thanks
__________________
||||newsiness.com||||'""|""\__,_
| _[lol]___[lol]____ l ||__|__|)
|(@)(@)"""""""**|(@)(@)**|(@) 100% Free Online Flash games

Last edited by newsiness; 07-04-2009 at 06:16 AM.
newsiness is offline   Reply With Quote
Old 07-02-2009, 01:40 PM   #2 (permalink)
NamePros Member
 
Join Date: Sep 2006
Posts: 99
100.00 NP$ (Donate)

Bruce_KD will become famous soon enoughBruce_KD will become famous soon enough



We probably need more information. Where did you get this link from? Is the link supposed to be an image or is that the encrypted part?

Explain what you're trying to do in more detail, from start to finish.


Bruce
Bruce_KD is offline   Reply With Quote
Old 07-02-2009, 04:36 PM   #3 (permalink)
Senior Member
 
Join Date: Jul 2005
Posts: 1,420
176.50 NP$ (Donate)

newsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud of


AIDS/HIV Save a Life
the original image url is --Edited--

Looks like the image has been encryted, anyway to decrypt it?
__________________
||||newsiness.com||||'""|""\__,_
| _[lol]___[lol]____ l ||__|__|)
|(@)(@)"""""""**|(@)(@)**|(@) 100% Free Online Flash games

Last edited by newsiness; 07-04-2009 at 06:16 AM.
newsiness is offline   Reply With Quote
Old 07-02-2009, 04:56 PM   #4 (permalink)
Senior Member
 
nasaboy007's Avatar
 
Join Date: Jul 2005
Location: NJ
Posts: 1,182
1,504.30 NP$ (Donate)

nasaboy007 has much to be proud ofnasaboy007 has much to be proud ofnasaboy007 has much to be proud ofnasaboy007 has much to be proud ofnasaboy007 has much to be proud ofnasaboy007 has much to be proud ofnasaboy007 has much to be proud ofnasaboy007 has much to be proud of



All I see is the filename in my browser (where the image usually shows up). Is this what you see? The same thing happened when I downloaded it (except it changed to whatever the current files filepath was). I opened it with Firefox.

It could be that (if it really is supposed to do this) it's a scripted image that just displays the path of the file.
nasaboy007 is offline   Reply With Quote
Old 07-02-2009, 05:06 PM   #5 (permalink)
Senior Member
 
Join Date: Jul 2005
Posts: 1,420
176.50 NP$ (Donate)

newsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud of


AIDS/HIV Save a Life
Originally Posted by nasaboy007 View Post
All I see is the filename in my browser (where the image usually shows up). Is this what you see? The same thing happened when I downloaded it (except it changed to whatever the current files filepath was). I opened it with Firefox.

It could be that (if it really is supposed to do this) it's a scripted image that just displays the path of the file.
You are right, this is what i see in FF browser.

I am using a simple script, for example
--Edited--

From the demo, it shows alien language. Do you think it is possible to decrypt it?

please advice.
__________________
||||newsiness.com||||'""|""\__,_
| _[lol]___[lol]____ l ||__|__|)
|(@)(@)"""""""**|(@)(@)**|(@) 100% Free Online Flash games

Last edited by newsiness; 07-04-2009 at 06:16 AM.
newsiness is offline   Reply With Quote
Old 07-03-2009, 08:32 AM   #6 (permalink)
NamePros Member
 
Join Date: Sep 2006
Posts: 99
100.00 NP$ (Donate)

Bruce_KD will become famous soon enoughBruce_KD will become famous soon enough



The "alien language" is the binary content of the image.
Unfortunately, there is an error with how they're generating the image.

Opening the link with IE would yield that little box with the red X that says the image can't be loaded.
Sometimes, Firefox replaces the erroneous image with an image of the site's URL.

If the image Was valid, you would need to tell the browser the code you're spitting out is actually an image using the content-type header.

<?php
header('Content-type: image/jpeg');
$url="http://...";
echo file_get_contents( $url );
?>

Where are you getting this link from? Does it display a real image elsewhere? It's possible there is a session cookie behind it...


Bruce

Last edited by Bruce_KD; 07-05-2009 at 03:23 PM.
Bruce_KD is offline   Reply With Quote
Old 07-03-2009, 09:37 AM   #7 (permalink)
Senior Member
 
Join Date: Jul 2005
Posts: 1,420
176.50 NP$ (Donate)

newsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud of


AIDS/HIV Save a Life
Originally Posted by Bruce_KD View Post
The "alien language" is the binary content of the image.
Unfortunately, there is an error with how they're generating the image.

Opening the link with IE would yield that little box with the red X that says the image can't be loaded.
Sometimes, Firefox replaces the erroneous image with an image of the site's URL.

If the image Was valid, you would need to tell the browser the code you're spitting out is actually an image using the content-type header.

Where are you getting this link from? Does it display a real image elsewhere? It's possible there is a session cookie behind it...


Bruce
They encrypted the image and yes... it is diplayed elsewhere....
__________________
||||newsiness.com||||'""|""\__,_
| _[lol]___[lol]____ l ||__|__|)
|(@)(@)"""""""**|(@)(@)**|(@) 100% Free Online Flash games
newsiness is offline   Reply With Quote
Old 07-03-2009, 10:55 AM   #8 (permalink)
NamePros Member
 
Join Date: Sep 2006
Posts: 99
100.00 NP$ (Donate)

Bruce_KD will become famous soon enoughBruce_KD will become famous soon enough



Ok. You need to tell me where is is displayed. If you're not going to give me all the information, I am not going to help you. This is the third and final time I am going to ask. Tell me exactly what you are trying to do, or I'm going to assume it's something illegal/unethical.
They can't just "encrypt" and image so it doesn't display in the browser and magically display it elsewhere. Unfortunately, without seeing how they are displaying it and all the files that come into play, as well as what you're actually trying to get as an outcome, I can't do anything.


Bruce
Bruce_KD is offline   Reply With Quote
Old 07-04-2009, 06:15 AM   #9 (permalink)
Senior Member
 
Join Date: Jul 2005
Posts: 1,420
176.50 NP$ (Donate)

newsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud ofnewsiness has much to be proud of


AIDS/HIV Save a Life
Originally Posted by Bruce_KD View Post
Ok. You need to tell me where is is displayed. If you're not going to give me all the information, I am not going to help you. This is the third and final time I am going to ask. Tell me exactly what you are trying to do, or I'm going to assume it's something illegal/unethical.
They can't just "encrypt" and image so it doesn't display in the browser and magically display it elsewhere. Unfortunately, without seeing how they are displaying it and all the files that come into play, as well as what you're actually trying to get as an outcome, I can't do anything.


Bruce
PM sent.
__________________
||||newsiness.com||||'""|""\__,_
| _[lol]___[lol]____ l ||__|__|)
|(@)(@)"""""""**|(@)(@)**|(@) 100% Free Online Flash games
newsiness is offline   Reply With Quote
Old 07-12-2009, 09:10 PM   #10 (permalink)
New Member
 
Join Date: Jul 2009
Posts: 5
0.00 NP$ (Donate)

aira is an unknown quantity at this point



You are right, this is what i see in FF browser.
__________________
Buy Backlinks- 20.000 Backlinks SEO Pack .-EDU .GOV Backlinks SEO Installment Plans Available
aira is offline   Reply With Quote
Old 07-14-2009, 11:08 AM   #11 (permalink)
New Member
 
Join Date: Jun 2009
Posts: 12
0.00 NP$ (Donate)

Sofia22 is an unknown quantity at this point



Something that you see in some place.
I like your signature, is fun.
__________________
Sofi Hedz
Grupo Mayan Friends
Sofia22 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools


All times are GMT -7. The time now is 10:18 AM.

Contact Us - NamePros.com - Privacy Statement - Top
Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.2