-2

I want to get real password which is converted by wordpress into md5 format.

For example, my md5 password is - 62cc2d8b4bf2d8728120d052163a77df Real password - demo123.

I want to get real password from md5 version.

I tried this but didn't give me what I want -http://md5encryption.com/

Cœur
  • 37,241
  • 25
  • 195
  • 267
craig
  • 377
  • 4
  • 15

1 Answers1

3

You cannot unhash a password. That is the whole reason you hash a password in the first place.

It is possible to 'brute' force a password, or use a rainbow table to lookup the password - but that is why you (hopefully) used a salt on the password to ensure the hash is unique.

Laurence
  • 58,936
  • 21
  • 171
  • 212