Make WordPress Core


Ignore:
Timestamp:
09/04/2019 06:23:17 PM (5 years ago)
Author:
desrosj
Message:

Fix for URL sanitization in wp_kses_bad_protocol_once().

Merges [45997] to the 4.4 branch.

Props irsdl, sstoqnov, whyisjake.

Location:
branches/4.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.4

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

    r44035 r46010  
    13961396 */
    13971397function wp_kses_bad_protocol_once($string, $allowed_protocols, $count = 1 ) {
     1398    $string  = preg_replace( '/(&#0*58(?![;0-9])|&#x0*3a(?![;a-f0-9]))/i', '$1;', $string );
    13981399    $string2 = preg_split( '/:|&#0*58;|&#x0*3a;/i', $string, 2 );
    13991400    if ( isset($string2[1]) && ! preg_match('%/\?%', $string2[0]) ) {
Note: See TracChangeset for help on using the changeset viewer.