Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spamspan
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
spamspan
Commits
17b31f93
Commit
17b31f93
authored
2 years ago
by
Daniel Korte
Committed by
vitalie
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3302315
by Daniel Korte: Include SVG elements in allowed content and...
Issue
#3302315
by Daniel Korte: Include SVG elements in allowed content and align Twig XSS filtering
parent
d493a692
Branches
8.x-1.x
Tags
8.x-1.3
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/SpamspanInterface.php
+5
-0
5 additions, 0 deletions
src/SpamspanInterface.php
src/SpamspanTrait.php
+1
-4
1 addition, 4 deletions
src/SpamspanTrait.php
src/TwigExtension/SpamspanExtension.php
+2
-1
2 additions, 1 deletion
src/TwigExtension/SpamspanExtension.php
with
8 additions
and
5 deletions
src/SpamspanInterface.php
+
5
−
0
View file @
17b31f93
...
...
@@ -75,6 +75,11 @@ interface SpamspanInterface {
// Closing tag.
.
'</a>!ixs'
;
/**
* The list of HTML tags allowed.
*/
const
ALLOWED_HTML
=
[
'abbr'
,
'acronym'
,
'address'
,
'article'
,
'aside'
,
'b'
,
'bdi'
,
'bdo'
,
'big'
,
'blockquote'
,
'br'
,
'caption'
,
'cite'
,
'code'
,
'col'
,
'colgroup'
,
'command'
,
'dd'
,
'del'
,
'details'
,
'dfn'
,
'div'
,
'dl'
,
'dt'
,
'em'
,
'figcaption'
,
'figure'
,
'footer'
,
'h1'
,
'h2'
,
'h3'
,
'h4'
,
'h5'
,
'h6'
,
'header'
,
'hgroup'
,
'hr'
,
'i'
,
'img'
,
'ins'
,
'kbd'
,
'li'
,
'mark'
,
'menu'
,
'meter'
,
'nav'
,
'ol'
,
'output'
,
'p'
,
'pre'
,
'progress'
,
'q'
,
'rp'
,
'rt'
,
'ruby'
,
's'
,
'samp'
,
'section'
,
'small'
,
'span'
,
'strong'
,
'sub'
,
'summary'
,
'sup'
,
'table'
,
'tbody'
,
'td'
,
'tfoot'
,
'th'
,
'thead'
,
'time'
,
'tr'
,
'tt'
,
'u'
,
'ul'
,
'var'
,
'wbr'
,
'!--'
,
'svg'
,
'animate'
,
'title'
,
'use'
,
'g'
,
'text'
,
'textPath'
,
'tspan'
,
'symbol'
,
'defs'
,
'desc'
,
'mask'
,
'marker'
,
'mpath'
,
'path'
,
'polygon'
,
'polyline'
,
'circle'
,
'clipPath'
,
'ellipse'
,
'line'
,
'radialGradient'
,
'rect'
,
'image'
,
'linearGradient'
];
/**
* Obfuscation based on PATTERN_EMAIL_BARE.
*
...
...
This diff is collapsed.
Click to expand it.
src/SpamspanTrait.php
+
1
−
4
View file @
17b31f93
...
...
@@ -291,10 +291,7 @@ trait SpamspanTrait {
// Remove anything except certain inline elements, just in case.
// Nested <a> elements are illegal.
// <img> needs to be here to allow for graphic @.
$contents
=
Xss
::
filter
(
$contents
,
[
'em'
,
'strong'
,
'cite'
,
'b'
,
'i'
,
'code'
,
'span'
,
'img'
,
'!--'
,
'br'
]
);
$contents
=
Xss
::
filter
(
$contents
,
SpamspanInterface
::
ALLOWED_HTML
);
}
return
$contents
;
...
...
This diff is collapsed.
Click to expand it.
src/TwigExtension/SpamspanExtension.php
+
2
−
1
View file @
17b31f93
...
...
@@ -4,6 +4,7 @@ namespace Drupal\spamspan\TwigExtension;
use
Drupal\Component\Utility\Xss
;
use
Drupal\Core\Render\Renderer
;
use
Drupal\spamspan\SpamspanInterface
;
/**
* Provides the SpamSpan filter function within Twig templates.
...
...
@@ -55,7 +56,7 @@ class SpamspanExtension extends \Twig_Extension {
public
function
spamSpanFilter
(
$string
)
{
$template_attached
=
[
'#attached'
=>
[
'library'
=>
[
'spamspan/obfuscate'
]]];
$this
->
renderer
->
render
(
$template_attached
);
return
Xss
::
filter
Admin
(
spamspan
(
$string
));
return
Xss
::
filter
(
spamspan
(
$string
)
,
SpamspanInterface
::
ALLOWED_HTML
);
}
}
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