From owner-svn-ports-all@FreeBSD.ORG Fri Jan 9 18:41:24 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 1077AD49; Fri, 9 Jan 2015 18:41:24 +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 D6198C1C; Fri, 9 Jan 2015 18:41:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t09IfNNm012702; Fri, 9 Jan 2015 18:41:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t09IfNak012701; Fri, 9 Jan 2015 18:41:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201501091841.t09IfNak012701@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 9 Jan 2015 18:41:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376640 - 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.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: Fri, 09 Jan 2015 18:41:24 -0000 Author: sunpoet Date: Fri Jan 9 18:41:22 2015 New Revision: 376640 URL: https://svnweb.freebsd.org/changeset/ports/376640 QAT: https://qat.redports.org/buildarchive/r376640/ Log: - Document cURL URL request injection vulnerability (CVE-2014-8150) Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Jan 9 18:28:29 2015 (r376639) +++ head/security/vuxml/vuln.xml Fri Jan 9 18:41:22 2015 (r376640) @@ -57,6 +57,43 @@ Notes: --> + + cURL -- URL request injection vulnerability + + + curl + 7.40.0 + + + + +

cURL reports:

+
+

When libcurl sends a request to a server via a HTTP proxy, it + copies the entire URL into the request and sends if off. + If the given URL contains line feeds and carriage returns those will + be sent along to the proxy too, which allows the program to for + example send a separate HTTP request injected embedded in the URL. + Many programs allow some kind of external sources to set the URL or + provide partial pieces for the URL to ask for, and if the URL as + received from the user is not stripped good enough this flaw allows + malicious users to do additional requests in a way that was not + intended, or just to insert request headers into the request that + the program didn't intend. + We are not aware of any exploit of this flaw.

+
+ +
+ + CVE-2014-8150 + http://curl.haxx.se/docs/adv_20150108B.html + + + 2014-12-25 + 2015-01-09 + +
+ WebKit-gtk -- Multiple vulnabilities