Blame SOURCES/00242-CVE-2016-1000110-httpoxy.patch

ae2451
From 3a184cc875709d4324d234a4b939d614a2c9bb0f Mon Sep 17 00:00:00 2001
ae2451
From: Charalampos Stratakis <cstratak@redhat.com>
ae2451
Date: Mon, 1 Aug 2016 11:20:11 +0200
ae2451
Subject: [PATCH] =?UTF-8?q?Fix=20for=20CVE-2016-1000110=20http://bugs.pyth?=
ae2451
 =?UTF-8?q?on.org/issue27568=20Based=20on=20the=20patch=20by=20R=C3=A9mi?=
ae2451
 =?UTF-8?q?=20Rampin?=
ae2451
MIME-Version: 1.0
ae2451
Content-Type: text/plain; charset=UTF-8
ae2451
Content-Transfer-Encoding: 8bit
ae2451
ae2451
---
ae2451
 Doc/howto/urllib2.rst   |  5 +++++
ae2451
 Doc/library/urllib.rst  | 10 ++++++++++
ae2451
 Doc/library/urllib2.rst |  4 ++++
ae2451
 Lib/test/test_urllib.py | 12 ++++++++++++
ae2451
 Lib/urllib.py           |  9 +++++++++
ae2451
 5 files changed, 40 insertions(+)
ae2451
ae2451
diff --git a/Doc/howto/urllib2.rst b/Doc/howto/urllib2.rst
ae2451
index f84bf08..6542846 100644
ae2451
--- a/Doc/howto/urllib2.rst
ae2451
+++ b/Doc/howto/urllib2.rst
ae2451
@@ -523,6 +523,11 @@ setting up a `Basic Authentication`_ handler : ::
ae2451
     through a proxy.  However, this can be enabled by extending urllib2 as
ae2451
     shown in the recipe [#]_.
ae2451
 
ae2451
+.. note::
ae2451
+
ae2451
+    ``HTTP_PROXY`` will be ignored if a variable ``REQUEST_METHOD`` is set; see
ae2451
+    the documentation on :func:`~urllib.getproxies`.
ae2451
+
ae2451
 
ae2451
 Sockets and Layers
ae2451
 ==================
ae2451
diff --git a/Doc/library/urllib.rst b/Doc/library/urllib.rst
ae2451
index c7d200d..3b9876e 100644
ae2451
--- a/Doc/library/urllib.rst
ae2451
+++ b/Doc/library/urllib.rst
ae2451
@@ -280,6 +280,16 @@ Utility functions
ae2451
    find it, looks for proxy information from Mac OSX System Configuration for
ae2451
    Mac OS X and Windows Systems Registry for Windows.
ae2451
 
ae2451
+    .. note::
ae2451
+
ae2451
+        If the environment variable ``REQUEST_METHOD`` is set, which usually
ae2451
+        indicates your script is running in a CGI environment, the environment
ae2451
+        variable ``HTTP_PROXY`` (uppercase ``_PROXY``) will be ignored. This is
ae2451
+        because that variable can be injected by a client using the "Proxy:"
ae2451
+        HTTP header. If you need to use an HTTP proxy in a CGI environment,
ae2451
+        either use ``ProxyHandler`` explicitly, or make sure the variable name
ae2451
+        is in lowercase (or at least the ``_proxy`` suffix).
ae2451
+
ae2451
 .. note::
ae2451
     urllib also exposes certain utility functions like splittype, splithost and
ae2451
     others parsing url into various components. But it is recommended to use
ae2451
diff --git a/Doc/library/urllib2.rst b/Doc/library/urllib2.rst
ae2451
index 24deeb4..46fce59 100644
ae2451
--- a/Doc/library/urllib2.rst
ae2451
+++ b/Doc/library/urllib2.rst
ae2451
@@ -224,6 +224,10 @@ The following classes are provided:
ae2451
 
ae2451
    To disable autodetected proxy pass an empty dictionary.
ae2451
 
ae2451
+    .. note::
ae2451
+
ae2451
+       ``HTTP_PROXY`` will be ignored if a variable ``REQUEST_METHOD`` is set;
ae2451
+       see the documentation on :func:`~urllib.getproxies`.
ae2451
 
ae2451
 .. class:: HTTPPasswordMgr()
ae2451
 
ae2451
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
ae2451
index 3a273f8..3845012 100644
ae2451
--- a/Lib/test/test_urllib.py
ae2451
+++ b/Lib/test/test_urllib.py
ae2451
@@ -161,6 +161,18 @@ class ProxyTests(unittest.TestCase):
ae2451
         self.env.set('NO_PROXY', 'localhost, anotherdomain.com, newdomain.com')
ae2451
         self.assertTrue(urllib.proxy_bypass_environment('anotherdomain.com'))
ae2451
 
ae2451
+    def test_proxy_cgi_ignore(self):
ae2451
+        try:
ae2451
+            self.env.set('HTTP_PROXY', 'http://somewhere:3128')
ae2451
+            proxies = urllib.getproxies_environment()
ae2451
+            self.assertEqual('http://somewhere:3128', proxies['http'])
ae2451
+            self.env.set('REQUEST_METHOD', 'GET')
ae2451
+            proxies = urllib.getproxies_environment()
ae2451
+            self.assertNotIn('http', proxies)
ae2451
+        finally:
ae2451
+            self.env.unset('REQUEST_METHOD')
ae2451
+            self.env.unset('HTTP_PROXY')
ae2451
+
ae2451
 
ae2451
 class urlopen_HttpTests(unittest.TestCase, FakeHTTPMixin):
ae2451
     """Test urlopen() opening a fake http connection."""
ae2451
diff --git a/Lib/urllib.py b/Lib/urllib.py
ae2451
index f9655f9..9b31df1 100644
ae2451
--- a/Lib/urllib.py
ae2451
+++ b/Lib/urllib.py
ae2451
@@ -1361,11 +1361,20 @@ def getproxies_environment():
ae2451
     [Fancy]URLopener constructor.
ae2451
 
ae2451
     """
ae2451
+    # Get all variables
ae2451
     proxies = {}
ae2451
     for name, value in os.environ.items():
ae2451
         name = name.lower()
ae2451
         if value and name[-6:] == '_proxy':
ae2451
             proxies[name[:-6]] = value
ae2451
+
ae2451
+    # CVE-2016-1000110 - If we are running as CGI script, forget HTTP_PROXY
ae2451
+    # (non-all-lowercase) as it may be set from the web server by a "Proxy:"
ae2451
+    # header from the client
ae2451
+    # If "proxy" is lowercase, it will still be used thanks to the next block
ae2451
+    if 'REQUEST_METHOD' in os.environ:
ae2451
+        proxies.pop('http', None)
ae2451
+
ae2451
     return proxies
ae2451
 
ae2451
 def proxy_bypass_environment(host):
ae2451
-- 
ae2451
2.7.4
ae2451