Location>code7788 >text

【2024validity】 WordPress forgot password to retrieve the login password of the most simple and effective method

Popularity:916 ℃/2024-10-25 17:01:56

This method to retrieve Wordpress backend password secret, provided that, you can manipulate the data.

【2024有效】WordPress忘记密码找回登录密码的最简单有效的方法

 

I recently forgot.Geek-Man, comic book superheroWebsite login password, or follow the previous method, enter the database to modify the database directly.

But now wordpress password encryption is not simple MD5 so you can't replace the database with a md5 encrypted password.

The key here is not knowing how encryption is done these days.

So Baidu wordpress forgot the password to retrieve the login password method.

Kung Fu, I finally found a password that looks like the current wordpress encrypted password.

Then it's done. Just use it.

The following string "$P$BWZhQxx/R9UCBgECUhxsV0EKfqfEh31" is the plaintext admin encrypted password.

Just do the following.

After logging into phpMyAdmin, select the database that corresponds to your website, and then click on the SQL tab above to execute the following command:

1
UPDATE `wp_users` SET `user_pass`='$P$BWZhQxx/R9UCBgECUhxsV0EKfqfEh31' WHERE `user_login`='admin'

Then login with username: admin, password: admin. Note that if your username is something else, replace it in the command above and log in with that username when you log in.