从'wordpress_logged_in'Cookie中删除用户名


9

我正在与客户一起采取一些严格的安全措施。经过安全审查后,我们收到通知,用户名存储在登录的cookie中,例如

wordpress_logged_in[username]|[hash]

是必须删除的东西。由于这是登录系统不可或缺的一部分,因此我不确定如何删除它并仍然维护会话。

Answers:


10

简短介绍

快速浏览WP源代码后,我想我已经找到了解决方案...

WordPress使用两个功能来设置和解析身份验证cookie:

  • wp_generate_auth_cookie
  • wp_parse_auth_cookie

有一个过滤器wp_generate_auth_cookieauth_cookie,你也许可以用它来改变Cookie的内容,但没有过滤器里面wp_parse_auth_cookie,但...

这两个函数都在pluggable.php中定义,这意味着您可以为它们编写自己的实现并覆盖默认实现。

  1. 编写您自己的插件(我们称其为“更好的身份验证Cookie”)
  2. 实现自己wp_generate_auth_cookiewp_parse_auth_cookie这个插件里面的功能。
  3. 激活您的插件。

您可以在下面找到这些功能的示例实现(强烈基于原始版本):

if ( !function_exists('wp_generate_auth_cookie') ) :
/**
 * Generate authentication cookie contents.
 *
 * @since 2.5.0
 *
 * @param int $user_id User ID
 * @param int $expiration Cookie expiration in seconds
 * @param string $scheme Optional. The cookie scheme to use: auth, secure_auth, or logged_in
 * @param string $token User's session token to use for this cookie
 * @return string Authentication cookie contents. Empty string if user does not exist.
 */
function wp_generate_auth_cookie( $user_id, $expiration, $scheme = 'auth', $token = '' ) {
    $user = get_userdata($user_id);
    if ( ! $user ) {
        return '';
    }

    if ( ! $token ) {
        $manager = WP_Session_Tokens::get_instance( $user_id );
        $token = $manager->create( $expiration );
    }

    $pass_frag = substr($user->user_pass, 8, 4);

    $key = wp_hash( $user->user_login . '|' . $pass_frag . '|' . $expiration . '|' . $token, $scheme );

    // If ext/hash is not present, compat.php's hash_hmac() does not support sha256.
    $algo = function_exists( 'hash' ) ? 'sha256' : 'sha1';
    $hash = hash_hmac( $algo, $user->user_login . '|' . $expiration . '|' . $token, $key );

    $cookie = $user_id . '|' . $expiration . '|' . $token . '|' . $hash;

    /**
     * Filter the authentication cookie.
     *
     * @since 2.5.0
     *
     * @param string $cookie     Authentication cookie.
     * @param int    $user_id    User ID.
     * @param int    $expiration Authentication cookie expiration in seconds.
     * @param string $scheme     Cookie scheme used. Accepts 'auth', 'secure_auth', or 'logged_in'.
     * @param string $token      User's session token used.
     */
    return apply_filters( 'auth_cookie', $cookie, $user_id, $expiration, $scheme, $token );
}
endif;


if ( !function_exists('wp_parse_auth_cookie') ) :
/**
 * Parse a cookie into its components
 *
 * @since 2.7.0
 *
 * @param string $cookie
 * @param string $scheme Optional. The cookie scheme to use: auth, secure_auth, or logged_in
 * @return array Authentication cookie components
 */
function wp_parse_auth_cookie($cookie = '', $scheme = '') {
    if ( empty($cookie) ) {
        switch ($scheme){
            case 'auth':
                $cookie_name = AUTH_COOKIE;
                break;
            case 'secure_auth':
                $cookie_name = SECURE_AUTH_COOKIE;
                break;
            case "logged_in":
                $cookie_name = LOGGED_IN_COOKIE;
                break;
            default:
                if ( is_ssl() ) {
                    $cookie_name = SECURE_AUTH_COOKIE;
                    $scheme = 'secure_auth';
                } else {
                    $cookie_name = AUTH_COOKIE;
                    $scheme = 'auth';
                }
        }

        if ( empty($_COOKIE[$cookie_name]) )
            return false;
        $cookie = $_COOKIE[$cookie_name];
    }

    $cookie_elements = explode('|', $cookie);
    if ( count( $cookie_elements ) !== 4 ) {
        return false;
    }

    list( $user_id, $expiration, $token, $hmac ) = $cookie_elements;

    $user = get_userdata($user_id);
    $username = ( ! $user ) ? '' : $user->user_login;

    return compact( 'username', 'expiration', 'token', 'hmac', 'scheme' );
}
endif;

我的这些函数的版本替换user_loginuser_id。但这是将其更改为更复杂的内容(例如,用户特定的哈希或类似内容)的一个良好的开始。


好答案。虽然我要等到赏金期的最后一天。:)
匿名鸭嘴兽2015年

我将接受这一点,尽管由于不再需要此解决方案,所以我不会对其进行测试。您显然在挖掘系统根源上付出了很大的努力,我
对此

1
尽管此方法是一种很好的方法,但您应该意识到它不再提供任何保护。用用户名代替用户ID,但是可以通过向发出请求example.com?author=123,从用户ID中获取用户名,该请求执行对URL的规范重定向example.com/author/john
约翰·布莱克本

1
@john请仔细阅读。我已经提到过,您可以轻松地使它在cookie中存储一些随机散列而不是userID来提高安全性。
KrzysiekDróżdż
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.