diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-06-15 01:40:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-06-15 01:40:10 (GMT) |
commit | 6cd1954c5cff4b3722a183d13648c71b18259778 (patch) | |
tree | 83a581787ff6cc96456bd621f29c80b8c6d958db | |
parent | 13266fb5c8e4a58c33209f8d97f86469c3245d94 (diff) | |
parent | 73b8b1cdb8beb44069aad44c5358aca4904fc103 (diff) | |
download | cpython-6cd1954c5cff4b3722a183d13648c71b18259778.zip cpython-6cd1954c5cff4b3722a183d13648c71b18259778.tar.gz cpython-6cd1954c5cff4b3722a183d13648c71b18259778.tar.bz2 |
merge 3.2 (#21766)
-rw-r--r-- | Lib/http/server.py | 2 | ||||
-rw-r--r-- | Lib/test/test_httpservers.py | 5 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
3 files changed, 9 insertions, 1 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py index dab1eb6..6a56539 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -971,7 +971,7 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler): (and the next character is a '/' or the end of the string). """ - collapsed_path = _url_collapse_path(self.path) + collapsed_path = _url_collapse_path(urllib.parse.unquote(self.path)) dir_sep = collapsed_path.find('/', 1) head, tail = collapsed_path[:dir_sep], collapsed_path[dir_sep+1:] if head in self.cgi_directories: diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index 4e62963..47c6796 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -464,6 +464,11 @@ class CGIHTTPServerTestCase(BaseTestCase): (res.read(), res.getheader('Content-type'), res.status)) self.assertEqual(os.environ['SERVER_SOFTWARE'], signature) + def test_urlquote_decoding_in_cgi_check(self): + res = self.request('/cgi-bin%2ffile1.py') + self.assertEqual((b'Hello World\n', 'text/html', 200), + (res.read(), res.getheader('Content-type'), res.status)) + class SocketlessRequestHandler(SimpleHTTPRequestHandler): def __init__(self): @@ -13,6 +13,9 @@ Core and Builtins Library ------- +- Issue #21766: Prevent a security hole in CGIHTTPServer by URL unquoting paths + before checking for a CGI script at that path. + - Fix arbitrary memory access in JSONDecoder.raw_decode with a negative second parameter. Bug reported by Guido Vranken. |