Avoid DOS in noJSLink

This commit is contained in:
Alejandro Romero Herrera 2020-08-31 13:02:00 +03:00
parent e2226c01e7
commit 9965ea7296

View file

@ -33,8 +33,8 @@ class Sanitize {
// Remove javascript from links
public static function noJSLink($text)
{
$text = trim($text);
while(strpos($text, 'javascript')===0){
$text = preg_replace("/\s+/", "", $text);
while(strpos($text, 'javascript:')===0){
$text = preg_replace("/javascript\s*:\s*/", "", $text);
}
return $text;