From owner-svn-ports-all@FreeBSD.ORG Thu Jan 22 17:54:25 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 A1238245; Thu, 22 Jan 2015 17:54:25 +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 72B35C35; Thu, 22 Jan 2015 17:54:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0MHsPBm018400; Thu, 22 Jan 2015 17:54:25 GMT (envelope-from jase@FreeBSD.org) Received: (from jase@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0MHsPHe018398; Thu, 22 Jan 2015 17:54:25 GMT (envelope-from jase@FreeBSD.org) Message-Id: <201501221754.t0MHsPHe018398@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jase set sender to jase@FreeBSD.org using -f From: Jase Thew Date: Thu, 22 Jan 2015 17:54:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r377689 - in branches/2015Q1/security/polarssl13: . 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-all@freebsd.org X-Mailman-Version: 2.1.18-1 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, 22 Jan 2015 17:54:25 -0000 Author: jase Date: Thu Jan 22 17:54:24 2015 New Revision: 377689 URL: https://svnweb.freebsd.org/changeset/ports/377689 QAT: https://qat.redports.org/buildarchive/r377689/ Log: MFH: r377673 security/polarssl13: - Add upstream patch to address crafted certificates vulnerability - Add USES cpe Security: CVE-2015-1182 Security: a5856eba-a015-11e4-a680-1c6f65c3c4ff Approved by: maintainer (chris@bsdjunk.com) Approved by: ports-secteam (erwin) Added: branches/2015Q1/security/polarssl13/files/patch-library-asn1parse_c - copied unchanged from r377673, head/security/polarssl13/files/patch-library-asn1parse_c Modified: branches/2015Q1/security/polarssl13/Makefile Directory Properties: branches/2015Q1/ (props changed) Modified: branches/2015Q1/security/polarssl13/Makefile ============================================================================== --- branches/2015Q1/security/polarssl13/Makefile Thu Jan 22 17:49:26 2015 (r377688) +++ branches/2015Q1/security/polarssl13/Makefile Thu Jan 22 17:54:24 2015 (r377689) @@ -2,6 +2,7 @@ PORTNAME= polarssl PORTVERSION= 1.3.9 +PORTREVISION= 1 DISTVERSIONSUFFIX= -gpl CATEGORIES= security devel MASTER_SITES= http://polarssl.org/download/ @@ -14,7 +15,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/polarssl13/files/patch-library-asn1parse_c (from r377673, head/security/polarssl13/files/patch-library-asn1parse_c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q1/security/polarssl13/files/patch-library-asn1parse_c Thu Jan 22 17:54:24 2015 (r377689, copy of r377673, head/security/polarssl13/files/patch-library-asn1parse_c) @@ -0,0 +1,11 @@ +--- library/asn1parse.c.orig 2015-01-20 10:12:00.469677333 +0000 ++++ library/asn1parse.c 2015-01-20 10:14:00.764667419 +0000 +@@ -278,6 +278,8 @@ + if( cur->next == NULL ) + return( POLARSSL_ERR_ASN1_MALLOC_FAILED ); + ++ memset( cur->next, 0, sizeof( asn1_sequence ) ); ++ + cur = cur->next; + } + }