summaryrefslogtreecommitdiff
path: root/program/lib/washtml.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-08-15 10:12:18 +0200
committerAleksander Machniak <alec@alec.pl>2012-08-15 10:12:18 +0200
commit5ef8e4ad9d3ee8689d2b83750aa65395b7cd59ee (patch)
treef3151e2a50d47fabe8099b33b1d9dc289537c1bc /program/lib/washtml.php
parentf326e956e5223e4d097463e6d2a0436a1a997092 (diff)
Fix XSS issue with href="javascript:" not being removed (#1488613)
Diffstat (limited to 'program/lib/washtml.php')
-rw-r--r--program/lib/washtml.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/program/lib/washtml.php b/program/lib/washtml.php
index c12315fec..98ae5ed5a 100644
--- a/program/lib/washtml.php
+++ b/program/lib/washtml.php
@@ -214,8 +214,11 @@ class washtml
$key = strtolower($key);
$value = $node->getAttribute($key);
if (isset($this->_html_attribs[$key]) ||
- ($key == 'href' && preg_match('!^([a-z][a-z0-9.+-]+:|//|#).+!i', $value)))
+ ($key == 'href' && !preg_match('!^javascript!i', $value)
+ && preg_match('!^([a-z][a-z0-9.+-]+:|//|#).+!i', $value))
+ ) {
$t .= ' ' . $key . '="' . htmlspecialchars($value, ENT_QUOTES) . '"';
+ }
else if ($key == 'style' && ($style = $this->wash_style($value))) {
$quot = strpos($style, '"') !== false ? "'" : '"';
$t .= ' style=' . $quot . $style . $quot;
@@ -237,7 +240,8 @@ class washtml
else if (preg_match('/^data:.+/i', $value)) { // RFC2397
$t .= ' ' . $key . '="' . htmlspecialchars($value, ENT_QUOTES) . '"';
}
- } else
+ }
+ else
$washed .= ($washed?' ':'') . $key;
}
return $t . ($washed && $this->config['show_washed']?' x-washed="'.$washed.'"':'');