From: Reed Loden Date: Thu, 11 Nov 2010 02:11:10 +0000 (-0800) Subject: Bug 591165: (CVE-2010-2761) [SECURITY] Bump minimum required version of CGI.pm to... X-Git-Tag: bugzilla-3.6.4~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bff0a3a4112165508701a4bb205b09ccb846c7b;p=thirdparty%2Fbugzilla.git 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] --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index bb078e9b9f..8a7939afbb 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -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',