Results 1 to 6 of 6
Hi Guys,
I've password encrypted by MD5.
I want to use the decrypted password in my script. How can i do that.
Please help.......
- 06-10-2009 #1Just Joined!
- Join Date
- Jun 2009
- Location
- Bangalore
- Posts
- 3
Decrypt password
Hi Guys,
I've password encrypted by MD5.
I want to use the decrypted password in my script. How can i do that.
Please help....
- 06-10-2009 #2Just Joined!
- Join Date
- Jun 2009
- Posts
- 4
Hello,
There is no easy way to decrypt md5 as it is a one-way encryption type. If the password is simple then you could md5 a word dictionary and compare them other than that you'll need a faster computer to crack it.
- 06-10-2009 #3
Strictly speaking, md5 is not an encryption function. It's a hash function. The fundamental difference between the two being that an encryption function is meant to be undone whereas a hash function is not. The term 'one-way encryption' is misleading and can imply that the encryption can be "undone" which it cannot without using some suspicious methods.
- 06-10-2009 #4Linux Guru
- Join Date
- Apr 2009
- Location
- I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
- Posts
- 8,974
Unix/Linux password encryption routines, whether MD5 hash based, or standard DES based, are strictly 1-way algorithms. There is no practical way to generate the originating plain text from the encrypted form. When applications need to validate a password so encrypted, they take the hash value from the stored encrypted version and use that as a key to encrypt the provided plain text password, then compare the two. They should string compare as equal if the password matches.
FWIW, the only practical way to determine the original password is via a dictionary attack, or getting the owner to disclose the password (social engineering attack). Brute force is an option, if you have serious computing power and a few zillions of years to wait... Personally, I use a combination of sanskrit and the silly nickname of a college buddy that only a few people know for my most important passwords. No dictionary attack would derive that, I'm quite sure!Sometimes, real fast is almost as good as real time.
Just remember, Semper Gumbi - always be flexible!
- 06-11-2009 #5Just Joined!
- Join Date
- Jun 2009
- Location
- Bangalore
- Posts
- 3
Thanks for the reply guy.
- 06-12-2009 #6Just Joined!
- Join Date
- Jun 2009
- Posts
- 17
Another way is to turn it to blob, save and then type a new password and go back to MD5 - easy.


Reply With Quote