How to decrypt the password generated by wordpress

前端 未结 2 1451
时光说笑
时光说笑 2021-02-04 15:18

I am using a wordpress site. I just want to know , How to get a plain text from encrypted password(stored in wordpress database). I used the $wp_hasher->CheckPassword($

2条回答
  •  野的像风
    2021-02-04 15:47

    You will not be able to retrieve a plain text password from wordpress.

    Wordpress use a 1 way encryption to store the passwords using a variation of md5. There is no way to reverse this.

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

提交回复
热议问题