NamePros
Welcome, Guest! Ready to make a name for yourself in the domain business? We welcome both the hobbyist and professional domainer to join the discussion as part of the NamePros community.

Click here to create your profile to start earning reputation for posting, and trader ratings for buying & selling in our free e-marketplace. Build your trader rating with each successful sale. Our system has tracked over 100,000 sales and counting!
FAQ & TOS Register Search Today's Posts Mark Forums Read

Go Back   NamePros.com > Website Development Discussion Forums > Programming
Reload this Page How to decrypt an image

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

Advanced Search


Reply
 
LinkBack Thread Tools
Old 07-02-2009, 09:42 AM THREAD STARTER               #1 (permalink)
Senior Member
Join Date: Jul 2005
Posts: 1,492
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
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 THREAD STARTER               #3 (permalink)
Senior Member
Join Date: Jul 2005
Posts: 1,492
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,219
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 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 THREAD STARTER               #5 (permalink)
Senior Member
Join Date: Jul 2005
Posts: 1,492
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.
????: NamePros.com http://www.namepros.com/programming/593885-how-to-decrypt-an-image.html

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
Bruce_KD will become famous soon enoughBruce_KD will become famous soon enough
 



The "alien language" is the binary content of the image.
????: NamePros.com http://www.namepros.com/showthread.php?t=593885
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 THREAD STARTER               #7 (permalink)
Senior Member
Join Date: Jul 2005
Posts: 1,492
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.
????: NamePros.com http://www.namepros.com/showthread.php?t=593885
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
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 THREAD STARTER               #9 (permalink)
Senior Member
Join Date: Jul 2005
Posts: 1,492
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
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
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


Similar Threads
Thread Thread Starter Forum Replies Last Post
ACE Image Hosting Script - ***24 HOUR 50% OFF SALE*** RAH Scripts For Sale 0 09-26-2007 04:24 AM
ACE Image Hosting Script - New Version 3.0 - Amazing new features! RAH Scripts For Sale 0 04-09-2007 06:00 AM
ACE Image Hosting Script - New Version 3.0 - Amazing new features! RAH Scripts For Sale 6 02-27-2007 12:42 PM
Greatest Image Gallery Tutorial Ever Wybe Webmaster Tutorials 5 12-20-2005 11:51 AM
What Keywords? spy69 Search Engines 5 06-28-2005 09:05 PM

Liquid Web Smart Servers  
All times are GMT -7. The time now is 10:35 AM.

Managed Web Hosting by Liquid Web
Domain name forum recommended by Domaining.com Powered by: vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.6.0 Ad Management plugin by RedTyger