pwd. Sets user if applicable, returns bool * */ function yourls_check_username_password() { global $yourls_user_passwords; if( isset( $yourls_user_passwords[ $_REQUEST['username'] ] ) && yourls_check_password_hash( $_REQUEST['username'], $_REQUEST['password'] ) ) { yourls_set_user( $_REQUEST['username'] ); return true; } return false; } /** * Check a submitted password sent in plain text against stored password which can be a salted hash * */ function yourls_check_password_hash( $user, $submitted_password ) { global $yourls_user_passwords; if( !isset( $yourls_user_passwords[ $user ] ) ) return false; if ( yourls_user_has_phppass( $user ) ) { $hasher = new PasswordHash(8, false); list( , $hash ) = explode( ':', $yourls_user_passwords[ $user ] ); $hash = str_replace( '!', '$', $hash ); return ( $hasher->CheckPassword( $submitted_password, $hash ) ); } else if( yourls_has_hashed_password( $user ) ) { // Stored password is a salted hash: "md5:<$r = rand(10000,99999)>:" list( , $salt, ) = explode( ':', $yourls_user_passwords[ $user ] ); return( $yourls_user_passwords[ $user ] == 'md5:'.$salt.':'.md5( $salt . $submitted_password ) ); } else { // Password stored in clear text return( $yourls_user_passwords[ $user ] == $submitted_password ); } } /** * Check if a user's password is hashed with PHPASS. * @since 1.7 * @param string $user user login * @return bool true if password hashed with PHPASS, otherwise false */ function yourls_user_has_phppass( $user ) { global $yourls_user_passwords; if ( !isset( $yourls_user_passwords[ $user ] ) ) { return false; } $hash = $yourls_user_passwords[ $user ]; return ( substr( $hash, 0, 7 ) === 'phpass:' ); } /** * Overwrite plaintext passwords in config file with hashed versions. * This has the unfortunate side effect of invalidating the session cookie * for any user whose password is changed. * @since 1.7 * @return true if overwrite was successful, otherwise false */ function yourls_hash_passwords_now() { global $yourls_user_passwords; $hasher = new PasswordHash(8, false); $configdata = file_get_contents( YOURLS_CONFIGFILE ); // TODO: check mode for writability foreach ( $yourls_user_passwords as $user => $pwvalue ) { if ( !yourls_user_has_phppass( $user ) && !yourls_has_hashed_password( $user ) ) { $clearpass = $pwvalue; $hash = $hasher->HashPassword( $clearpass ); // PHP would interpret $ as a variable, so replace it in storage. $hash = str_replace( '$', '!', $hash ); $pattern = "/'$user'[\t ]*=>[\t ]*'$clearpass'/"; $replace = "'$user' => 'phpass:$hash'"; $count = 0; $configdata = preg_replace( $pattern, $replace, $configdata, -1, $count ); // There should be exactly one replacement. Otherwise, fast fail. if ( $count != 1 ) { error_log( "Problem with preg_replace for password hash of user $user" ); return false; } } } $success = file_put_contents( YOURLS_CONFIGFILE, $configdata ); if ( $success === FALSE ) { error_log( "Failed writing to " . YOURLS_CONFIGFILE ); return false; } return true; } /** * Check to see if any passwords are stored as cleartext. * * @since 1.7 * @return bool true if any passwords are cleartext */ function yourls_has_cleartext_passwords() { global $yourls_user_passwords; foreach ( $yourls_user_passwords as $user => $pwdata ) { if ( !yourls_has_hashed_password( $user ) && !yourls_user_has_phppass( $user ) ) { return true; } } return false; } /** * Check if a user has a hashed password * * Check if a user password is 'md5:[38 chars]'. TODO: deprecate this when/if we have proper user management with * password hashes stored in the DB * * @since 1.7 * @param string $user user login * @return bool true if password hashed, false otherwise */ function yourls_has_hashed_password( $user ) { global $yourls_user_passwords; return( isset( $yourls_user_passwords[ $user ] ) && substr( $yourls_user_passwords[ $user ], 0, 4 ) == 'md5:' && strlen( $yourls_user_passwords[ $user ] ) == 42 // http://www.google.com/search?q=the+answer+to+life+the+universe+and+everything ); } /** * Check auth against encrypted COOKIE data. Sets user if applicable, returns bool * */ function yourls_check_auth_cookie() { global $yourls_user_passwords; foreach( $yourls_user_passwords as $valid_user => $valid_password ) { if ( yourls_salt( $valid_user ) == $_COOKIE['yourls_username'] ) { yourls_set_user( $valid_user ); return true; } } return false; } /** * Check auth against signature and timestamp. Sets user if applicable, returns bool * */ function yourls_check_signature_timestamp() { // Timestamp in PHP : time() // Timestamp in JS: parseInt(new Date().getTime() / 1000) global $yourls_user_passwords; foreach( $yourls_user_passwords as $valid_user => $valid_password ) { if ( ( md5( $_REQUEST['timestamp'].yourls_auth_signature( $valid_user ) ) == $_REQUEST['signature'] or md5( yourls_auth_signature( $valid_user ).$_REQUEST['timestamp'] ) == $_REQUEST['signature'] ) && yourls_check_timestamp( $_REQUEST['timestamp'] ) ) { yourls_set_user( $valid_user ); return true; } } return false; } /** * Check auth against signature. Sets user if applicable, returns bool * */ function yourls_check_signature() { global $yourls_user_passwords; foreach( $yourls_user_passwords as $valid_user => $valid_password ) { if ( yourls_auth_signature( $valid_user ) == $_REQUEST['signature'] ) { yourls_set_user( $valid_user ); return true; } } return false; } /** * Generate secret signature hash * */ function yourls_auth_signature( $username = false ) { if( !$username && defined('YOURLS_USER') ) { $username = YOURLS_USER; } return ( $username ? substr( yourls_salt( $username ), 0, 10 ) : 'Cannot generate auth signature: no username' ); } /** * Check if timestamp is not too old * */ function yourls_check_timestamp( $time ) { $now = time(); // Allow timestamp to be a little in the future or the past -- see Issue 766 return yourls_apply_filter( 'check_timestamp', abs( $now - $time ) < YOURLS_NONCE_LIFE, $time ); } /** * Store new cookie. No $user will delete the cookie. * */ function yourls_store_cookie( $user = null ) { if( !$user ) { $pass = null; $time = time() - 3600; } else { global $yourls_user_passwords; if( isset($yourls_user_passwords[$user]) ) { $pass = $yourls_user_passwords[$user]; } else { die( 'Stealing cookies?' ); // This should never happen } $time = time() + YOURLS_COOKIE_LIFE; } $domain = yourls_apply_filter( 'setcookie_domain', parse_url( YOURLS_SITE, 1 ) ); $secure = yourls_apply_filter( 'setcookie_secure', yourls_is_ssl() ); $httponly = yourls_apply_filter( 'setcookie_httponly', true ); if ( !headers_sent() ) { // Set httponly if the php version is >= 5.2.0 if( version_compare( phpversion(), '5.2.0', 'ge' ) ) { setcookie('yourls_username', yourls_salt( $user ) , $time, '/', $domain, $secure, $httponly ); } else { setcookie('yourls_username', yourls_salt( $user ), $time, '/', $domain, $secure ); } } else { // For some reason cookies were not stored: action to be able to debug that yourls_do_action( 'setcookie_failed', $user ); } } /** * Set user name * */ function yourls_set_user( $user ) { if( !defined( 'YOURLS_USER' ) ) define( 'YOURLS_USER', $user ); }