components/curl/patches/013-CVE-2014-0015.patch
author Petr Sumbera <petr.sumbera@oracle.com>
Fri, 21 Feb 2014 06:29:26 -0800
branchs11-update
changeset 2961 ab10ab982328
parent 2939 e9aeb41ecd7a
permissions -rw-r--r--
18242736 libxml2 package license file needs some adjustment

CVE-2014-0015: libcurl can in some circumstances re-use the wrong
connection when asked to do an NTLM-authenticated HTTP or HTTPS request.

More information at:
http://curl.haxx.se/docs/adv_20140129.html

Closest relevant upstream patch at:
http://curl.haxx.se/CVE-2014-0015-7-27.patch

--- lib/url.c.orig	2014-02-04 12:41:29.827372361 -0800
+++ lib/url.c	2014-02-04 12:56:44.394433387 -0800
@@ -2998,7 +2998,7 @@
         }
         if((needle->protocol & PROT_FTP) ||
            ((needle->protocol & PROT_HTTP) &&
-            (data->state.authhost.want==CURLAUTH_NTLM))) {
+            (data->state.authhost.want & CURLAUTH_NTLM))) {
           /* This is FTP or HTTP+NTLM, verify that we're using the same name
              and password as well */
           if(!strequal(needle->user, check->user) ||