From owner-svn-ports-all@FreeBSD.ORG Mon Jun 22 07:02:21 2015 Return-Path: Delivered-To: svn-ports-all@nevdull.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 7E8BD305; Mon, 22 Jun 2015 07:02:21 +0000 (UTC) (envelope-from delphij@FreeBSD.org) 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 6A0BB16EA; Mon, 22 Jun 2015 07:02:21 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t5M72Lvj076199; Mon, 22 Jun 2015 07:02:21 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t5M72L0S076198; Mon, 22 Jun 2015 07:02:21 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201506220702.t5M72L0S076198@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Mon, 22 Jun 2015 07:02:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r390276 - 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: Mon, 22 Jun 2015 07:02:21 -0000 Author: delphij Date: Mon Jun 22 07:02:20 2015 New Revision: 390276 URL: https://svnweb.freebsd.org/changeset/ports/390276 Log: Document lang/chicken vulnerabilities CVE-2014-9651 and CVE-2015-4556. PR: 200980 Submitted by: Jason Unovitch Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Jun 22 06:54:22 2015 (r390275) +++ head/security/vuxml/vuln.xml Mon Jun 22 07:02:20 2015 (r390276) @@ -57,6 +57,70 @@ Notes: --> + + chicken -- Potential buffer overrun in string-translate* + + + chicken + 4.10.0 + + + + +

chicken developer Peter Bex reports:

+
+

Using gcc's Address Sanitizer, it was discovered that the string-translate* + procedure from the data-structures unit can scan beyond the input string's + length up to the length of the source strings in the map that's passed to + string-translate*. This issue was fixed in master 8a46020, and it will + make its way into CHICKEN 4.10.

+

This bug is present in all released versions of CHICKEN.

+
+ +
+ + CVE-2015-4556 + http://lists.nongnu.org/archive/html/chicken-announce/2015-06/msg00010.html + http://lists.nongnu.org/archive/html/chicken-hackers/2015-06/msg00037.html + + + 2015-06-15 + 2015-06-22 + +
+ + + chicken -- buffer overrun in substring-index[-ci] + + + chicken + 4.10.0 + + + + +

chicken developer Moritz Heidkamp reports:

+
+

The substring-index[-ci] procedures of the data-structures unit are + vulnerable to a buffer overrun attack when passed an integer greater + than zero as the optional START argument.

+

As a work-around you can switch to SRFI 13's + string-contains procedure which also returns the substring's index in + case it is found.

+
+ +
+ + CVE-2014-9651 + http://lists.gnu.org/archive/html/chicken-users/2015-01/msg00048.html + http://lists.nongnu.org/archive/html/chicken-hackers/2014-12/txt2UqAS9CtvH.txt + + + 2015-01-12 + 2015-06-22 + +
+ cacti -- Multiple XSS and SQL injection vulerabilities