Sep 29 2006
How to turn any word into an MD5SUM Password
Recently I forgot the admin Wordpress password to login to this blog.
I knew that the password for the username admin was stored on the mysql database for this blog, so I used the mysql plugin for webmin to access the wordpress database directly.
I was able to see the password for the username admin, but it was encrypted.
I didn’t know the original password so what I did was to delete the encrypted password directly on the database. Then I ran this command on the linux console.
[KillerPenguin@penguincares themes]$ echo -n “blue13″ | md5sum
c6a13318eee2feecf1e0ca25ca2bbd65 -
if you noticed I turned the word blue13 into an md5sum encrypted password then I cut and pasted the password into the wordpress database and save it. Then I was able to login with my account admin and password blue13.
I figured someone might run into this problem so i figured this might help someone out there with the same problem.
Don’t try the password blue13 because i already changed it
KillerPenguin
Comments Off
