summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2016-07-31 06:34:34 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2016-07-31 06:34:34 (GMT)
commit436fe5a447abb69e5e5a4f453325c422af02dcaa (patch)
tree6087c6640f2e39e4e8bd1e7b7b6490e8e0b7f324 /Lib/test/test_urllib.py
parentb7b5d35545d2d078e868cbda485bc4651edec4ff (diff)
parent4cbb23f8f278fd1f71dcd5968aa0b3f0b4f3bd5d (diff)
downloadcpython-436fe5a447abb69e5e5a4f453325c422af02dcaa.zip
cpython-436fe5a447abb69e5e5a4f453325c422af02dcaa.tar.gz
cpython-436fe5a447abb69e5e5a4f453325c422af02dcaa.tar.bz2
[merge from 3.3] Prevent HTTPoxy attack (CVE-2016-1000110)
Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by RĂ©mi Rampin.
Diffstat (limited to 'Lib/test/test_urllib.py')
-rw-r--r--Lib/test/test_urllib.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
index e100039..87171e9 100644
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -222,6 +222,19 @@ class ProxyTests(unittest.TestCase):
self.env.set('NO_PROXY', 'localhost, anotherdomain.com, newdomain.com')
self.assertTrue(urllib.request.proxy_bypass_environment('anotherdomain.com'))
+ def test_proxy_cgi_ignore(self):
+ try:
+ self.env.set('HTTP_PROXY', 'http://somewhere:3128')
+ proxies = urllib.request.getproxies_environment()
+ self.assertEqual('http://somewhere:3128', proxies['http'])
+ self.env.set('REQUEST_METHOD', 'GET')
+ proxies = urllib.request.getproxies_environment()
+ self.assertNotIn('http', proxies)
+ finally:
+ self.env.unset('REQUEST_METHOD')
+ self.env.unset('HTTP_PROXY')
+
+
class urlopen_HttpTests(unittest.TestCase, FakeHTTPMixin, FakeFTPMixin):
"""Test urlopen() opening a fake http connection."""