Welcome Guest, Not a member yet? Register   Sign In
Retreiving Wordpress Passwords
#9

[eluser]Dam1an[/eluser]
I found it Smile
In wordpress\wp-includes\pluggable.php on line 1357 you have
Code:
function wp_hash_password($password) {
    global $wp_hasher;

    if ( empty($wp_hasher) ) {
        require_once( ABSPATH . 'wp-includes/class-phpass.php');
        // By default, use the portable hash from phpass
        $wp_hasher = new PasswordHash(8, TRUE);
    }

    return $wp_hasher->HashPassword($password);
}

I'll let you fetch a copy of the PHPass class yourself from the wordpress install as it's too big to paste here, and I'm too lazy to zip and attatch it Tongue


Messages In This Thread
Retreiving Wordpress Passwords - by El Forum - 06-16-2009, 08:38 PM
Retreiving Wordpress Passwords - by El Forum - 06-16-2009, 10:15 PM
Retreiving Wordpress Passwords - by El Forum - 06-16-2009, 10:21 PM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 12:30 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 04:48 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 05:11 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 05:21 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 05:27 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 05:31 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 05:36 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 05:40 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 05:45 AM
Retreiving Wordpress Passwords - by El Forum - 06-17-2009, 07:22 AM



Theme © iAndrew 2016 - Forum software by © MyBB