How Can I Decrypt A Password Form Mysql Database Of My Wordpress Blog?
When I go to my phpmyadmin(mysql manager) I see a table called wp_users in which passwords of all users are stored but they are encrypted(Example: 3khj4k2lk32lkdddlkfk4kl43ljkfkdl but thats npt the real password). So dus anyone know how to decrypt it?
Related posts:
- ‘cannot Connect To The Database Because: ‘ . Mysql_error()); (help)? Hello, I am new to all of this configuring things but I am slowly trying to learn. But I am going through the process of...
- How To Change Wordpress Mysql Database Setup From Auto To Manual On Blog Colony? I mistakenly chose the automatic setup option for the Wordpress MySQL database setup when I added a blog at Blog Colony. How will I change...
- How Do I Backup Mysql Database? Can I Use Same Database On Another Source Like Wordpress Or E107? Hi, 1) Is there a way to back up mysql database to my computer? So if i join a host after some time to reupload...
- How Do I Find Mysql Database Name For Wordpress? In my Control panel under under “create and update” I created one Database. It asked me to create a USERNAME and PASSWORD, which I did....
- Is There Any Issues With Regards To Importing An Old Wordpress Mysql Database To A New One? I imported my old wordpress mysql database to a new database in my hosting account, then deleted the old one. The site’s showing up ok,...



RSS
A hash (hash code/digest/message digest) is an encrypted form of a data. A hash of the password is generated and stored in your database.
In PHP hashes are generated using the PASSWORD() [41 byte] , md5() [128-bit (32 hexadecimal characters)] and sha1 [160-bit (40 hexadecimal characters)] functions.
You need to know which function was used for hashing the password before it was stored (you can identify this from the word press source code for creating a user account)
Then you need to know mysql or php wherein you write code to decrypt this hashed password to its original characters.http://www.theedifier.com/blogging-blogg…