From owner-svn-ports-branches@FreeBSD.ORG Mon Jan 19 22:01:03 2015 Return-Path: Delivered-To: svn-ports-branches@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 3E6934F3; Mon, 19 Jan 2015 22:01:03 +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 11BADEEF; Mon, 19 Jan 2015 22:01:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0JM12If076195; Mon, 19 Jan 2015 22:01:02 GMT (envelope-from jase@FreeBSD.org) Received: (from jase@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0JM12Ml076193; Mon, 19 Jan 2015 22:01:02 GMT (envelope-from jase@FreeBSD.org) Message-Id: <201501192201.t0JM12Ml076193@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jase set sender to jase@FreeBSD.org using -f From: Jase Thew Date: Mon, 19 Jan 2015 22:01:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r377487 - in branches/2015Q1/security/polarssl: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jan 2015 22:01:03 -0000 Author: jase Date: Mon Jan 19 22:01:01 2015 New Revision: 377487 URL: https://svnweb.freebsd.org/changeset/ports/377487 QAT: https://qat.redports.org/buildarchive/r377487/ Log: MFH: r377482 security/polarssl: - Add upstream patch to address crafted certificates vulnerability - Add USES cpe Security: CVE-2015-1182 Security: a5856eba-a015-11e4-a680-1c6f65c3c4ff Approved by: ports-secteam (zi) Added: branches/2015Q1/security/polarssl/files/patch-library-asn1parse_c - copied unchanged from r377482, head/security/polarssl/files/patch-library-asn1parse_c Modified: branches/2015Q1/security/polarssl/Makefile Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/security/polarssl/Makefile ============================================================================== --- branches/2015Q1/security/polarssl/Makefile Mon Jan 19 21:43:06 2015 (r377486) +++ branches/2015Q1/security/polarssl/Makefile Mon Jan 19 22:01:01 2015 (r377487) @@ -2,6 +2,7 @@ PORTNAME= polarssl PORTVERSION= 1.2.12 +PORTREVISION= 1 DISTVERSIONSUFFIX= -gpl CATEGORIES= security devel MASTER_SITES= http://polarssl.org/download/ @@ -13,7 +14,7 @@ LICENSE= GPLv2 ALL_TARGET= no_test -USES= gmake tar:tgz +USES= cpe gmake tar:tgz USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} Copied: branches/2015Q1/security/polarssl/files/patch-library-asn1parse_c (from r377482, head/security/polarssl/files/patch-library-asn1parse_c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q1/security/polarssl/files/patch-library-asn1parse_c Mon Jan 19 22:01:01 2015 (r377487, copy of r377482, head/security/polarssl/files/patch-library-asn1parse_c) @@ -0,0 +1,11 @@ +--- library/asn1parse.c.orig 2015-01-19 19:31:49.664592954 +0000 ++++ library/asn1parse.c 2015-01-19 19:34:11.583587052 +0000 +@@ -244,6 +244,8 @@ + if( cur->next == NULL ) + return( POLARSSL_ERR_ASN1_MALLOC_FAILED ); + ++ memset( cur->next, 0, sizeof( asn1_sequence ) ); ++ + cur = cur->next; + } + }