Make WordPress Core

Changeset 41501 for branches/4.4


Ignore:
Timestamp:
09/19/2017 06:14:33 PM (9 years ago)
Author:
aaroncampbell
Message:

Database: Hardening to bring wpdb::prepare() inline with documentation.

wpdb::prepare() supports %s, %d, and %F as placeholders in the query string. Any other non-escaped % will be escaped.

Merges [41496] to 4.4 branch.

Location:
branches/4.4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/4.4

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

    r41488 r41501  
    12711271        $query = preg_replace( '|(?<!%)%f|' , '%F', $query ); // Force floats to be locale unaware
    12721272        $query = preg_replace( '|(?<!%)%s|', "'%s'", $query ); // quote the strings, avoiding escaped strings like %%s
     1273        $query = preg_replace( '/%(?:%|$|([^dsF]))/', '%%\\1', $query ); // escape any unescaped percents
    12731274        array_walk( $args, array( $this, 'escape_by_ref' ) );
    12741275        return @vsprintf( $query, $args );
     
    28322833
    28332834                    if ( is_array( $value['length'] ) ) {
    2834                         $queries[ $col ] = $this->prepare( "CONVERT( LEFT( CONVERT( %s USING $charset ), %.0f ) USING $connection_charset )", $value['value'], $value['length']['length'] );
     2835                        $length = sprintf( '%.0f', $value['length']['length'] );
     2836                        $queries[ $col ] = $this->prepare( "CONVERT( LEFT( CONVERT( %s USING $charset ), $length ) USING $connection_charset )", $value['value'] );
    28352837                    } else if ( 'binary' !== $charset ) {
    28362838                        // If we don't have a length, there's no need to convert binary - it will always return the same result.
  • branches/4.4/tests/phpunit/tests/db.php

    r41475 r41501  
    273273    }
    274274
     275
    275276    /**
    276277     * Test that SQL modes are set correctly
     
    982983        $this->assertNull( $row );
    983984    }
     985
     986    /**
     987     *
     988     */
     989    function test_prepare_with_unescaped_percents() {
     990        global $wpdb;
     991
     992        $sql = $wpdb->prepare( '%d %1$d %%% %', 1 );
     993        $this->assertEquals( '1 %1$d %% %', $sql );
     994    }
    984995}
Note: See TracChangeset for help on using the changeset viewer.