You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rp...@apache.org on 2013/02/16 19:26:16 UTC

svn commit: r1446920 - /httpd/test/framework/trunk/t/security/CVE-2005-3352.t

Author: rpluem
Date: Sat Feb 16 18:26:16 2013
New Revision: 1446920

URL: http://svn.apache.org/r1446920
Log:
* Referer should be URI escaped and not HTML escaped.

Modified:
    httpd/test/framework/trunk/t/security/CVE-2005-3352.t

Modified: httpd/test/framework/trunk/t/security/CVE-2005-3352.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/security/CVE-2005-3352.t?rev=1446920&r1=1446919&r2=1446920&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/security/CVE-2005-3352.t (original)
+++ httpd/test/framework/trunk/t/security/CVE-2005-3352.t Sat Feb 16 18:26:16 2013
@@ -15,4 +15,4 @@ my $r = GET $url, Referer => '">http://f
 
 ok t_cmp($r->code, 200, "response code is OK");
 
-ok t_cmp($r->content, qr/\&quot/, "referer was escaped");
+ok t_cmp($r->content, qr/%22%3e/, "referer was escaped");