1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

Customizable whitelist of schemas for safeLinks

This commit is contained in:
naNuke 2015-01-25 19:47:32 +01:00 committed by Aidan Woods
parent bf5105cb1a
commit 1d4296f34d

View File

@ -84,6 +84,14 @@ class Parsedown
protected $safeLinksEnabled = true;
protected $safeLinksWhitelist = array(
'http://',
'https://',
'/',
'ftp://',
'ftps://'
);
#
# Lines
#
@ -1262,9 +1270,22 @@ class Parsedown
$Element['attributes']['title'] = $Definition['title'];
}
if ( $this->safeLinksEnabled && preg_match("/^(\/|https?:\/\/|ftps?:\/\/)/ui", $Element['attributes']['href']) === 0 )
if ( $this->safeLinksEnabled )
{
return;
$matched = false;
foreach ( $this->safeLinksWhitelist as $scheme )
{
if ( stripos($Element['attributes']['href'], $scheme) === 0 )
{
$matched = true;
break;
}
}
if ( ! $matched )
{
return;
}
}
$Element['attributes']['href'] = htmlspecialchars($Element['attributes']['href'], ENT_QUOTES);