How to decrypt the password generated by wordpress

I use the wordpress site. I just want to know how to get plain text from an encrypted password (stored in a Wordpress database). I used $wp_hasher->CheckPassword($plain_password, $password_hashed)to verify the password is correct. But this time I would like to know how to get plain text.

+5
source share
2 answers

You cannot get a text password from Wordpress.

Wordpress uses one-way encryption to store passwords using the md5 change. Unable to change this.

See this article for more information http://wordpress.org/support/topic/how-is-the-user-password-encrypted-wp_hash_password

+12
source

, . , , reset.

  • DB wp_users , abc123, user_activation.
  • yoursite.com/wp-login.php?action=rp&key= abc123&login= yourourernameername
  • .
+22

All Articles