Jump to content

php passwords encrypted with md5


raymyster

Recommended Posts

not you cannot decrpty md5 hashes. md5 is a one way encryption. In order to decrypt the hash you'll need to use brute force or a dictionary attack which will take log time to do.

 

Why do want to decrypt a password? Is to retrieve the orginal password if the user has forgotten it? I do not recommend this method. Instead what you should do is reset the password to a random one and provide the new password to the user. There are many tutorials out there which shows how to create random passwords

Link to comment
Share on other sites

its very very hard to convert back... otherwise what would be the point in using it :P

 

Well, actually its impossible to convert back, since it's not an encryption, but rather a hash. Yes, you can (sometimes) gain the original text through the use of rainbow tables, but that's not quite the same thing.

Link to comment
Share on other sites

Nope there isn't but you could use external sites like md5decrypter.com and the millions of others out there to do it for you.

The way they basically do it is by having tables with common words (i'm talking about millions) and their equivalent md5 code that has already been encrypted. To let others crack their md5 they let people search for their string in the database and if it finds the match of the md5 string it will give you the pre inserted word.

That method only works on common passwords that don't use symbols and such ;).

Link to comment
Share on other sites

However if you did find a datablock which did hash to the same, it doesn't actually mean that it is what was used originally. This is the underlying principle to either freenet or usenet...

 

err, there were weaknesses proved in the 2nd or 3rd round of md4, which was why md5 was developed, basically it cascades sooner and there are less collisions...

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.