From: Simon Green Date: Thu, 17 May 2012 13:16:45 +0000 (+0200) Subject: Bug 752751: Perl modules that start with a protocol (eg HTTP::Header) are not escaped... X-Git-Tag: bugzilla-4.3.2~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4cf4eb6a5871774ac19db4979f8d6c05b812c07;p=thirdparty%2Fbugzilla.git Bug 752751: Perl modules that start with a protocol (eg HTTP::Header) are not escaped correctly in SAFE_URL_REGEXP r/a=LpSolit --- diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index e5bd8edb74..a2efec48c4 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -43,7 +43,7 @@ use constant FORMAT_2_SIZE => [19,55]; # Pseudo-constant. sub SAFE_URL_REGEXP { my $safe_protocols = join('|', SAFE_PROTOCOLS); - return qr/($safe_protocols):[^\s<>\"]+[\w\/]/i; + return qr/($safe_protocols):[^:\s<>\"][^\s<>\"]+[\w\/]/i; } # Convert the constants in the Bugzilla::Constants and Bugzilla::WebService::Constants