I forgot my WordPress admin password, and I see it in the phpMyAdmin
file.
But it is in a different form.
How I can decode it to know what my password is?
Is there any tool for decoding passwords?
$P$BX5675uhhghfhgfhfhfgftut/0
Help me.
I forgot my WordPress admin password, and I see it in the phpMyAdmin
file.
But it is in a different form.
How I can decode it to know what my password is?
Is there any tool for decoding passwords?
$P$BX5675uhhghfhgfhfhfgftut/0
Help me.
Comments are closed.
You can’t easily decrypt the password from the hash string that you see. You should rather replace the hash string with a new one from a password that you do know.
There’s a good howto here:
https://jakebillo.com/wordpress-phpass-generator-resetting-or-creating-a-new-admin-user/
Basically:
If you have more users in this WordPress installation, you can also copy the hash string from one user whose password you know, to the other user (admin).
just edit wp_user table with your phpmyadmin, and choose MD5 on Function field then input your new password, save it (go button).
MD5 encrypting is possible, but decrypting is still unknown (to me). However, there are many ways to compare these things.
Using compare methods like so:
Only for WordPress users.
If you have access to your PHPMyAdmin, focus you have because you paste that hashing here: $P$BX5675uhhghfhgfhfhfgftut/0, WordPress
user_pass
is not only MD5 format it also usesutf8_mb4_cli
charset so what to do?That’s why I use another Approach if I forget my WordPress password I use
I install other WordPress with new password :P, and I then go to PHPMyAdmin and copy that hashing from the database and paste that hashing to my current PHPMyAdmin password ( which I forget )
EASY is use this :
$P$BDSdKx2nglM.5UErwjQGeVtVWvjEvD1
I USE THIS APPROACH FOR MY SELF WHEN I DESIGN THEMES AND PLUGINS
WORDPRESS USE THIS
https://developer.wordpress.org/reference/functions/wp_hash_password/