Bug 591165: (CVE-2010-2761) [SECURITY] Bump minimum required version of CGI.pm to v3.50 in order to address header injection vulnerability.

[r=mkanat a=mkanat]


git-svn-id: svn://10.0.0.236/branches/BUGZILLA-3_6-BRANCH@261557 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mkanat%bugzilla.org
2010-11-11 02:20:43 +00:00
parent 4502635fa9
commit b382f2321b
2 changed files with 4 additions and 7 deletions

View File

@@ -1 +1 @@
7206
7207

View File

@@ -66,12 +66,9 @@ sub REQUIRED_MODULES {
{
package => 'CGI.pm',
module => 'CGI',
# Perl 5.10 requires CGI 3.33 due to a taint issue when
# uploading attachments, see bug 416382.
# Require CGI 3.21 for -httponly support, see bug 368502.
version => (vers_cmp($perl_ver, '5.10') > -1) ? '3.33' : '3.21',
# CGI::Carp in 3.46 and 3.47 breaks Template Toolkit
blacklist => ['^3\.46$', '^3\.47$'],
# 3.50 fixes a security problem that affects Bugzilla.
# (bug 591165)
version => '3.50',
},
{
package => 'Digest-SHA',