diff options
author | Reed Loden <reed@reedloden.com> | 2011-01-21 22:14:36 +0100 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2011-01-21 22:14:36 +0100 |
commit | ae5aaada36f45bd9a33599e5eac02843af8a31e2 (patch) | |
tree | e95d6c67380476a7cfa28c5d41d879d21e592870 | |
parent | affc4b164a1ec545a9ca3011d05668fb02760d59 (diff) | |
download | bugzilla-ae5aaada36f45bd9a33599e5eac02843af8a31e2.tar.gz bugzilla-ae5aaada36f45bd9a33599e5eac02843af8a31e2.tar.xz |
Bug 591165: (CVE-2010-4411) [SECURITY] Bump minimum required version of CGI.pm to v3.51 in order to address header injection vulnerability.
[r=mkanat a=mkanat]
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index f629abeeb..f45360916 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -94,9 +94,9 @@ sub REQUIRED_MODULES { { package => 'CGI.pm', module => 'CGI', - # 3.50 fixes a security problem that affects Bugzilla. + # 3.51 fixes a security problem that affects Bugzilla. # (bug 591165) - version => '3.50', + version => '3.51', }, { package => 'Digest-SHA', |