Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
ebad2e61
Commit
ebad2e61
authored
11 years ago
by
Alex Pott
Browse files
Options
Downloads
Patches
Plain Diff
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
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/lib/Drupal/Component/Utility/Xss.php
+13
-24
13 additions, 24 deletions
core/lib/Drupal/Component/Utility/Xss.php
with
13 additions
and
24 deletions
core/lib/Drupal/Component/Utility/Xss.php
+
13
−
24
View file @
ebad2e61
...
@@ -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'
,
$
split
ter
,
$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
'>'
;
return
'>'
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment