Make WordPress Core

Changeset 47653


Ignore:
Timestamp:
04/29/2020 04:38:31 PM (4 years ago)
Author:
whyisjake
Message:

User: Invalidate user_activation_key on password update.
Query: Ensure that only a single post can be returned on date/time based queries.
Cache API: Ensure proper escaping around the stats method in the cache API.
Formatting: Expand sanitize_file_name to have better support for utf8 characters.

Brings the changes in [47634], [47635], [47637], and [47638] to the 4.4 branch.

Props: batmoo, ehti, nickdaugherty, peterwilsoncc, sergeybiryukov, sstoqnov, westi, whyisjake, whyisjake, xknown.

Location:
branches/4.4
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/4.4

  • branches/4.4/src/wp-includes/cache.php

    r35325 r47653  
    692692        echo '<ul>';
    693693        foreach ($this->cache as $group => $cache) {
    694             echo "<li><strong>Group:</strong> $group - ( " . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>';
     694            echo '<li><strong>Group:</strong> ' . esc_html( $group ) . ' - ( ' . number_format( strlen( serialize( $cache ) ) / KB_IN_BYTES, 2 ) . 'k )</li>';
    695695        }
    696696        echo '</ul>';
  • branches/4.4/src/wp-includes/formatting.php

    r46001 r47653  
    13761376    $filename_raw = $filename;
    13771377    $special_chars = array("?", "[", "]", "/", "\\", "=", "<", ">", ":", ";", ",", "'", "\"", "&", "$", "#", "*", "(", ")", "|", "~", "`", "!", "{", "}", "%", "+", chr(0));
     1378
     1379    // Check for support for utf8 in the installed PCRE library once and store the result in a static.
     1380    static $utf8_pcre = null;
     1381    if ( ! isset( $utf8_pcre ) ) {
     1382        // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged
     1383        $utf8_pcre = @preg_match( '/^./u', 'a' );
     1384    }
     1385
     1386    if ( ! seems_utf8( $filename ) ) {
     1387        $_ext     = pathinfo( $filename, PATHINFO_EXTENSION );
     1388        $_name    = pathinfo( $filename, PATHINFO_FILENAME );
     1389        $filename = sanitize_title_with_dashes( $_name ) . '.' . $_ext;
     1390    }
     1391
     1392    if ( $utf8_pcre ) {
     1393        $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
     1394    }
     1395
    13781396    /**
    13791397     * Filter the list of characters to remove from a filename.
     
    13851403     */
    13861404    $special_chars = apply_filters( 'sanitize_file_name_chars', $special_chars, $filename_raw );
    1387     $filename = preg_replace( "#\x{00a0}#siu", ' ', $filename );
    13881405    $filename = str_replace( $special_chars, '', $filename );
    13891406    $filename = str_replace( array( '%20', '+' ), '-', $filename );
  • branches/4.4/src/wp-includes/query.php

    r46498 r47653  
    16641664        } elseif ( $qv['p'] ) {
    16651665            $this->is_single = true;
    1666         } elseif ( ('' !== $qv['hour']) && ('' !== $qv['minute']) &&('' !== $qv['second']) && ('' != $qv['year']) && ('' != $qv['monthnum']) && ('' != $qv['day']) ) {
    1667             // If year, month, day, hour, minute, and second are set, a single
    1668             // post is being queried.
    1669             $this->is_single = true;
    16701666        } elseif ( '' != $qv['pagename'] || !empty($qv['page_id']) ) {
    16711667            $this->is_page = true;
  • branches/4.4/src/wp-includes/user.php

    r41129 r47653  
    14981498
    14991499    if ( $update ) {
    1500         if ( $user_email !== $old_user_data->user_email ) {
     1500        if ( $user_email !== $old_user_data->user_email || $user_pass !== $old_user_data->user_pass ) {
    15011501            $data['user_activation_key'] = '';
    15021502        }
  • branches/4.4/tests/phpunit/tests/formatting/SanitizeFileName.php

    r37810 r47653  
    6868        $this->assertEquals( 'no-extension', sanitize_file_name( '_.no-extension' ) );
    6969    }
     70
     71    /**
     72     * @dataProvider data_wp_filenames
     73     */
     74    function test_replaces_invalid_utf8_characters( $input, $expected ) {
     75        $this->assertEquals( $expected, sanitize_file_name( $input ) );
     76    }
     77
     78    function data_wp_filenames() {
     79        return array(
     80            array( urldecode( '%B1myfile.png' ), 'myfile.png' ),
     81            array( urldecode( '%B1myfile' ), 'myfile' ),
     82            array( 'demo bar.png', 'demo-bar.png' ),
     83            array( 'demo' . json_decode( '"\u00a0"' ) . 'bar.png', 'demo-bar.png' ),
     84        );
     85    }
    7086}
  • branches/4.4/tests/phpunit/tests/user.php

    r35772 r47653  
    903903    }
    904904
    905     function test_changing_email_invalidates_password_reset_key() {
     905    public function test_changing_email_invalidates_password_reset_key() {
    906906        global $wpdb;
    907907
     
    928928            'user_nicename' => 'cat',
    929929            'user_email'    => 'foo@bar.dev',
     930        );
     931        wp_update_user( $userdata );
     932
     933        $user = get_userdata( $user->ID );
     934        $this->assertEmpty( $user->user_activation_key );
     935    }
     936
     937    public function test_changing_password_invalidates_password_reset_key() {
     938        global $wpdb;
     939
     940        $user = $this->author;
     941        $wpdb->update( $wpdb->users, array( 'user_activation_key' => 'key' ), array( 'ID' => $user->ID ) );
     942        clean_user_cache( $user );
     943
     944        $user = get_userdata( $user->ID );
     945        $this->assertEquals( 'key', $user->user_activation_key );
     946
     947        $userdata = array(
     948            'ID'        => $user->ID,
     949            'user_pass' => 'password',
    930950        );
    931951        wp_update_user( $userdata );
Note: See TracChangeset for help on using the changeset viewer.