1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-25 08:31:29 +00:00

Merge branch 'patch-strip-harmful-tags' into 'master'

Remove href attribute if it executes JavaScript.

Security update to prevent A tags with a `javascript:` href from actually executing the JavaScript.

See merge request !31
This commit is contained in:
Andrew Dolgov
2016-08-07 22:21:45 +03:00

View File

@@ -1064,6 +1064,10 @@
array_push($attrs_to_remove, $attr);
}
if ($attr->nodeName == 'href' && stripos($attr->value, 'javascript:') === 0) {
array_push($attrs_to_remove, $attr);
}
if (in_array($attr->nodeName, $disallowed_attributes)) {
array_push($attrs_to_remove, $attr);
}