将md5加密密码转换为解密密码wordpress [复制]

This question already has an answer here:

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/

</div>

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.