From owner-svn-ports-all@FreeBSD.ORG Fri May 22 22:49:14 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC66E5E9; Fri, 22 May 2015 22:49:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CA42918D1; Fri, 22 May 2015 22:49:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4MMnD0r020672; Fri, 22 May 2015 22:49:13 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4MMnDXi020670; Fri, 22 May 2015 22:49:13 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201505222249.t4MMnDXi020670@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Fri, 22 May 2015 22:49:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387088 - head/security/vuxml X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 May 2015 22:49:14 -0000 Author: delphij Date: Fri May 22 22:49:12 2015 New Revision: 387088 URL: https://svnweb.freebsd.org/changeset/ports/387088 Log: Document PCRE and PHP multiple vulnerabilities. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri May 22 22:24:39 2015 (r387087) +++ head/security/vuxml/vuln.xml Fri May 22 22:49:12 2015 (r387088) @@ -57,6 +57,106 @@ Notes: --> + + pcre -- multiple vulnerabilities + + + pcre + 8.37 + + + php5 + 5.4.41 + + + php55 + 5.5.25 + + + php56 + 5.6.9 + + + + +

PCRE development team reports:

+
+

A pattern such as "((?2){0,1999}())?", which has a group + containing a forward reference repeated a large (but limited) + number of times within a repeated outer group that has a zero + minimum quantifier, caused incorrect code to be compiled, + leading to the error "internal error: previously-checked + referenced subpattern not found" when an incorrect memory + address was read. This bug was reported as "heap overflow", + discovered by Kai Lu of Fortinet's FortiGuard Labs and given + the CVE number CVE-2015-2325.

+

A pattern such as "((?+1)(\1))/" containing a forward + reference subroutine call within a group that also contained + a recursive back reference caused incorrect code to be + compiled. This bug was reported as "heap overflow", + discovered by Kai Lu of Fortinet's FortiGuard Labs, + and given the CVE number CVE-2015-2326.

+
+ +
+ + CVE-2015-2325 + CVE-2015-2326 + http://www.pcre.org/original/changelog.txt + + + 2015-04-28 + 2015-05-22 + +
+ + + php -- multiple vulnerabilities + + + php5 + 5.4.41 + + + php55 + 5.5.25 + + + php56 + 5.6.9 + + + + +

PHP development team reports:

+
+

Fixed bug #69364 (PHP Multipart/form-data remote DoS + Vulnerability). (CVE-2015-4024)

+

Fixed bug #69418 (CVE-2006-7243 fix regressions in + 5.4+). (CVE-2015-4025)

+

Fixed bug #69545 (Integer overflow in ftp_genlist() + resulting in heap overflow). (CVE-2015-4022)

+

Fixed bug #68598 (pcntl_exec() should not allow null + char). (CVE-2015-4026)

+

Fixed bug #69453 (Memory Corruption in phar_parse_tarfile + when entry filename starts with null). (CVE-2015-4021)

+
+ +
+ + CVE-2015-4021 + CVE-2015-4022 + CVE-2015-4024 + CVE-2015-4025 + CVE-2015-4026 + https://php.net/ChangeLog-5.php#5.6.9 + + + 2015-05-14 + 2015-05-22 + +
+ PostgreSQL -- minor security problems.