From owner-svn-ports-all@freebsd.org Wed Oct 4 07:56:05 2017 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 451CAE31B0B; Wed, 4 Oct 2017 07:56:05 +0000 (UTC) (envelope-from brnrd@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 0F6647654D; Wed, 4 Oct 2017 07:56:04 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v947u4m3008116; Wed, 4 Oct 2017 07:56:04 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v947u3mi008114; Wed, 4 Oct 2017 07:56:03 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201710040756.v947u3mi008114@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 4 Oct 2017 07:56:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451185 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 451185 X-SVN-Commit-Repository: ports 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.23 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: Wed, 04 Oct 2017 07:56:05 -0000 Author: brnrd Date: Wed Oct 4 07:56:03 2017 New Revision: 451185 URL: https://svnweb.freebsd.org/changeset/ports/451185 Log: security/vuxml: Document latest cURL vulnerability Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Oct 4 07:53:36 2017 (r451184) +++ head/security/vuxml/vuln.xml Wed Oct 4 07:56:03 2017 (r451185) @@ -58,6 +58,48 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + cURL -- out of bounds read + + + curl + 7.56.0 + + + + +

The cURL project reports:

+
+

FTP PWD response parser out of bounds read

+

libcurl may read outside of a heap allocated buffer when doing FTP.

+

When libcurl connects to an FTP server and successfully logs in + (anonymous or not), it asks the server for the current directory with + the PWD command. The server then responds with a 257 response containing + the path, inside double quotes. The returned path name is then kept by + libcurl for subsequent uses.

+

Due to a flaw in the string parser for this directory name, a directory + name passed like this but without a closing double quote would lead to + libcurl not adding a trailing NUL byte to the buffer holding the name. + When libcurl would then later access the string, it could read beyond + the allocated heap buffer and crash or wrongly access data beyond the + buffer, thinking it was part of the path.

+

A malicious server could abuse this fact and effectively prevent + libcurl-based clients to work with it - the PWD command is always issued + on new FTP connections and the mistake has a high chance of causing a + segfault.

+
+ +
+ + https://curl.haxx.se/docs/adv_20171004.html + CVE-2017-1000254 + + + 2017-10-04 + 2017-10-04 + +
+ FreeBSD -- OpenSSH Denial of Service vulnerability