Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ngentechllc/54944a85ca8505a6329ace4d72f454ac to your computer and use it in GitHub Desktop.
Save ngentechllc/54944a85ca8505a6329ace4d72f454ac to your computer and use it in GitHub Desktop.
Decrypt the WordPress password
$username = '';
$password = '';
$strSql = "SELECT user_pass FROM wp_users WHERE user_login = '$username'";
$result = mysql_query($strSql);
$row = mysql_fetch_array($result);
$encpass = $row['user_pass'];
if(!is_null($encpass)) {
include('wp-includes/class-phpass.php');
$wp_hasher = new PasswordHash(8, TRUE);
$password_hashed = $encpass;
$plain_password = $password;
if($wp_hasher->CheckPassword($plain_password, $password_hashed)) {
echo "Success";
}
else {
echo "Failed";
}
}
else {
echo "Not found.";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment