From f8813fc6a94b4e8e6d5e77009458ed8cb5a856c7 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Wed, 28 Dec 2011 17:10:39 -0500 Subject: Bug 697699 - (CVE-2011-3657) [SECURITY] XSS when viewing new charts or tabular and graphical reports in debug mode r=gerv, a=LpSolit --- Bugzilla/Chart.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index 5022723dd..86dcf9d03 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -438,7 +438,7 @@ sub dump { require Data::Dumper; say "
Bugzilla::Chart object:";
-    print Data::Dumper::Dumper($self);
+    print html_quote(Data::Dumper::Dumper($self));
     print "
"; } -- cgit v1.2.3-24-g4f1b