diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-13 18:56:26 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-11-13 18:56:26 +0100 |
commit | 3a3636a8e51513cda6979bf13c02f573d1e9737f (patch) | |
tree | 4d312105703db3c8012d53a85f7ce4415e0f1c80 /report.cgi | |
parent | 47da30332c29a8ad25e4a07353d2adf3ef8c1280 (diff) | |
download | bugzilla-3a3636a8e51513cda6979bf13c02f573d1e9737f.tar.gz bugzilla-3a3636a8e51513cda6979bf13c02f573d1e9737f.tar.xz |
Bug 790296 (CVE-2012-4189): [SECURITY] Field values are not escaped correctly in tabular reports
r=dkl a=LpSolit
Diffstat (limited to 'report.cgi')
-rwxr-xr-x | report.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/report.cgi b/report.cgi index cc43e66e4..5d5033b7d 100755 --- a/report.cgi +++ b/report.cgi @@ -354,5 +354,5 @@ sub get_field_restrictions { my $field = shift; my $cgi = Bugzilla->cgi; - return join('&', map {"$field=$_"} $cgi->param($field)); + return join('&', map {url_quote($field) . '=' . url_quote($_)} $cgi->param($field)); } |