From owner-svn-ports-all@freebsd.org Thu Mar 31 08:01:10 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42587AE3960; Thu, 31 Mar 2016 08:01:10 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 15FD51076; Thu, 31 Mar 2016 08:01:10 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u2V819sN097474; Thu, 31 Mar 2016 08:01:09 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u2V819hY097473; Thu, 31 Mar 2016 08:01:09 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201603310801.u2V819hY097473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Thu, 31 Mar 2016 08:01:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r412209 - 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.21 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: Thu, 31 Mar 2016 08:01:10 -0000 Author: madpilot Date: Thu Mar 31 08:01:08 2016 New Revision: 412209 URL: https://svnweb.freebsd.org/changeset/ports/412209 Log: Document mutiple Botan vulnerabilities. PR: 208393 Submitted by: Lapo Luchini Security: CVE-2015-5726 Security: CVE-2015-5727 Security: CVE-2016-2194 Security: CVE-2016-2195 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Mar 31 07:43:47 2016 (r412208) +++ head/security/vuxml/vuln.xml Thu Mar 31 08:01:08 2016 (r412209) @@ -58,6 +58,65 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + Multiple vulnerabilities in Botan + + + botan110 + 1.10.11 + + + + +

The botan developers reports:

+
+

Infinite loop in modular square root algorithm - The ressol function implements the Tonelli-Shanks algorithm for finding square roots could be sent into a nearly infinite loop due to a misplaced conditional check. This could occur if a composite modulus is provided, as this algorithm is only defined for primes. This function is exposed to attacker controlled input via the OS2ECP function during ECC point decompression.

+

Heap overflow on invalid ECC point - The PointGFp constructor did not check that the affine coordinate arguments were less than the prime, but then in curve multiplication assumed that both arguments if multiplied would fit into an integer twice the size of the prime.

+

The bigint_mul and bigint_sqr functions received the size of the output buffer, but only used it to dispatch to a faster algorithm in cases where there was sufficient output space to call an unrolled multiplication function.

+

The result is a heap overflow accessible via ECC point decoding, which accepted untrusted inputs. This is likely exploitable for remote code execution.

+

On systems which use the mlock pool allocator, it would allow an attacker to overwrite memory held in secure_vector objects. After this point the write will hit the guard page at the end of the mmapped region so it probably could not be used for code execution directly, but would allow overwriting adjacent key material.

+
+ +
+ + http://botan.randombit.net/security.html + CVE-2016-2194 + CVE-2016-2195 + + + 2016-02-01 + 2016-03-31 + +
+ + + Botan BER Decoder vulnerabilities + + + botan110 + 1.10.10 + + + + +

The botan developers reports:

+
+

Excess memory allocation in BER decoder - The BER decoder would allocate a fairly arbitrary amount of memory in a length field, even if there was no chance the read request would succeed. This might cause the process to run out of memory or invoke the OOM killer.

+

Crash in BER decoder - The BER decoder would crash due to reading from offset 0 of an empty vector if it encountered a BIT STRING which did not contain any data at all. This can be used to easily crash applications reading untrusted ASN.1 data, but does not seem exploitable for code execution.

+
+ +
+ + http://botan.randombit.net/security.html + CVE-2015-5726 + CVE-2015-5727 + + + 2015-08-03 + 2016-03-31 + +
+ mercurial -- multiple vulnerabilities