How to decode encrypted wordpress admin password? -


i forgot wordpress admin password, , see in phpmyadmin file.

but in different form.

how can decode know password is?

is there tool decoding passwords?

$p$bx5675uhhghfhgfhfhfgftut/0 

help me.

you can't decrypt password hash string see. should rather replace hash string new 1 password know.

there's howto here:

https://jakebillo.com/wordpress-phpass-generator-resetting-or-creating-a-new-admin-user/

basically:

  1. generate new hash known password using e.g. http://scriptserver.mainframe8.com/wordpress_password_hasher.php, described in above link, or other product uses phpass library,
  2. use db interface (e.g. phpmyadmin) update user_pass field new hash string.

if have more users in wordpress installation, can copy hash string 1 user password know, other user (admin).


Comments