Skip to content
Snippets Groups Projects
Commit ebad2e61 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #2077599 by chx, olli: Xss Split argument passing needs to come out of stone age.

parent 1ba78955
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -70,8 +70,6 @@ public static function filter($string, $html_tags = array('a', 'em', 'strong', ' ...@@ -70,8 +70,6 @@ public static function filter($string, $html_tags = array('a', 'em', 'strong', '
if (!Unicode::validateUtf8($string)) { if (!Unicode::validateUtf8($string)) {
return ''; return '';
} }
// Store the text format.
static::split($html_tags, TRUE, $mode);
// Remove NULL characters (ignored by some browsers). // Remove NULL characters (ignored by some browsers).
$string = str_replace(chr(0), '', $string); $string = str_replace(chr(0), '', $string);
// Remove Netscape 4 JS entities. // Remove Netscape 4 JS entities.
...@@ -86,7 +84,10 @@ public static function filter($string, $html_tags = array('a', 'em', 'strong', ' ...@@ -86,7 +84,10 @@ public static function filter($string, $html_tags = array('a', 'em', 'strong', '
$string = preg_replace('/&#[Xx]0*((?:[0-9A-Fa-f]{2})+;)/', '&#x\1', $string); $string = preg_replace('/&#[Xx]0*((?:[0-9A-Fa-f]{2})+;)/', '&#x\1', $string);
// Named entities. // Named entities.
$string = preg_replace('/&([A-Za-z][A-Za-z0-9]*;)/', '&\1', $string); $string = preg_replace('/&([A-Za-z][A-Za-z0-9]*;)/', '&\1', $string);
$html_tags = array_flip($html_tags);
$splitter = function ($matches) use ($html_tags, $mode) {
return static::split($matches[1], $html_tags, $mode);
};
return preg_replace_callback('% return preg_replace_callback('%
( (
<(?=[^a-zA-Z!/]) # a lone < <(?=[^a-zA-Z!/]) # a lone <
...@@ -96,7 +97,7 @@ public static function filter($string, $html_tags = array('a', 'em', 'strong', ' ...@@ -96,7 +97,7 @@ public static function filter($string, $html_tags = array('a', 'em', 'strong', '
<[^>]*(>|$) # a string that starts with a <, up until the > or the end of the string <[^>]*(>|$) # a string that starts with a <, up until the > or the end of the string
| # or | # or
> # just a > > # just a >
)%x', 'static::split', $string); )%x', $splitter, $string);
} }
/** /**
...@@ -123,32 +124,20 @@ public static function filterAdmin($string) { ...@@ -123,32 +124,20 @@ public static function filterAdmin($string) {
/** /**
* Processes an HTML tag. * Processes an HTML tag.
* *
* @param array $matches * @param string $string
* An array with various meaning depending on the value of $store. * The HTML tag to process.
* If $store is TRUE then the array contains the allowed tags. * @param array $html_tags
* If $store is FALSE then the array has one element, the HTML tag to process. * An array where the keys are the allowed tags and the values are not
* @param bool $store * used.
* Whether to store $matches. * @param bool $split_mode
* @param bool $mode * Whether $html_tags is a list of allowed (if FILTER_MODE_WHITELIST) or
* (optional) Ignored when $store is FALSE, otherwise used to determine
* whether $matches is a list of allowed (if FILTER_MODE_WHITELIST) or
* disallowed (if FILTER_MODE_BLACKLIST) HTML tags. * disallowed (if FILTER_MODE_BLACKLIST) HTML tags.
* *
* @return string * @return string
* If the element isn't allowed, an empty string. Otherwise, the cleaned up * If the element isn't allowed, an empty string. Otherwise, the cleaned up
* version of the HTML element. * version of the HTML element.
*/ */
protected static function split($matches, $store = FALSE, $mode = Xss::FILTER_MODE_WHITELIST) { protected static function split($string, $html_tags, $split_mode) {
static $html_tags, $split_mode;
if ($store) {
$html_tags = array_flip($matches);
$split_mode = $mode;
return;
}
$string = $matches[1];
if (substr($string, 0, 1) != '<') { if (substr($string, 0, 1) != '<') {
// We matched a lone ">" character. // We matched a lone ">" character.
return '&gt;'; return '&gt;';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment