tarun Posted January 28, 2007 Share Posted January 28, 2007 Hi GuysIm looking for an MD5 Decrypter to help me with this cool site [url=http://www.hackthissite.org]http://www.hackthissite.org[/url] - Its a site where you have these hacking challenges BUT there to help you learn about so security and stuff so dont be alarmedanyway has anyone got any PHP code that could help me?thank you everyoneFrom Tarun Quote Link to comment Share on other sites More sharing options...
Orio Posted January 28, 2007 Share Posted January 28, 2007 This is totally off topic...md5 cannot be decrypted, so there's no PHP code to decrypt it...You can try [url=http://www.oxid.it/cain.html]Cain and Abel[/url] if you want to run a dictionary/brute-force attack.Check this site also:http://www.md5decrypter.com/Orio. Quote Link to comment Share on other sites More sharing options...
tarun Posted January 28, 2007 Author Share Posted January 28, 2007 Sorry but i don't think its off topicI was looking for a PHP Script to decrypt MD5but thanks anywayTarun Quote Link to comment Share on other sites More sharing options...
Asheeown Posted January 28, 2007 Share Posted January 28, 2007 Their is no code to decrypt MD5 but you can enter the before text and encoded text into a database as you go Quote Link to comment Share on other sites More sharing options...
Jessica Posted January 28, 2007 Share Posted January 28, 2007 You can't decrypt it, you can just use dictionary attacks. There are several databases of matched codes, but the benefit of md5 is it doesn;t decrypt. Quote Link to comment Share on other sites More sharing options...
ShogunWarrior Posted January 28, 2007 Share Posted January 28, 2007 If you don't understand why MD5 "can't" be decrypted then you shouldn't have be running a site called "hackthissite" Quote Link to comment Share on other sites More sharing options...
irken Posted January 28, 2007 Share Posted January 28, 2007 Rather than actually trying to decrypt it (altho It's partially decrypted already? Remember reading that some years ago) you could do a dictionary based attempt, like the guy above suggested.Read through a wordlist, line by line and MD5 it, then match it against the password provided by the site you're talking about.Let's say the md5 provided by the site is f44152ed4438e5c60ffd0d5e67f7aae7 - if you'd run through the wordlist in your php script (you're going to have to make that yourself tho):wordlist.txthelloworldmynameisearlmd5("earl") = "f44152ed4438e5c60ffd0d5e67f7aae7"last entry would match. I guess it's a quick and dirty way.. you can find alot of "public" wordlists around.Another thing is to use JTR (John the ripper), found here: www.openwall.com/john/ - you'll also find various tutorials on this specific application. Just note that it has issues with some hashes.Oh, there's more ;).GData - http://gdataonline.com/seekhash.php - it's a database of user-submitted MD5 hashes, and their plaintext value.[quote]RESULTS:Hash Pass 52 [1] => ed [2] => 44 ) --!> f44152ed4438e5c60ffd0d5e67f7aae7 earl [/quote]It has quite alot.[b]EDIT:[/b] Oh, 3 people replied while I was writing this.. it's the same information as the above posts. Quote Link to comment Share on other sites More sharing options...
tarun Posted January 28, 2007 Author Share Posted January 28, 2007 Wow thank you every one Quote Link to comment Share on other sites More sharing options...
rantsh Posted January 28, 2007 Share Posted January 28, 2007 I don't think there's any way to hash back from md5, although I've seen some interesting attemps throughout the net Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.