summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-10-30 16:51:16 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-10-30 16:51:16 (GMT)
commitc99874da83d8b03e8257ab69dc2061df310f7b52 (patch)
tree00177edde060aad0c99c93ca8bdba01a7ef3f961 /Lib
parent96c03df771199196f4580d4fd32f6cea902fb2ec (diff)
parenta50f89954d206e063d653b847a4b5bbc8c0abb8c (diff)
downloadcpython-c99874da83d8b03e8257ab69dc2061df310f7b52.zip
cpython-c99874da83d8b03e8257ab69dc2061df310f7b52.tar.gz
cpython-c99874da83d8b03e8257ab69dc2061df310f7b52.tar.bz2
merge 3.3 (#19435)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/http/server.py9
-rw-r--r--Lib/test/test_httpservers.py12
2 files changed, 16 insertions, 5 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py
index 4b249de..7b577b4 100644
--- a/Lib/http/server.py
+++ b/Lib/http/server.py
@@ -995,18 +995,17 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):
def run_cgi(self):
"""Execute a CGI script."""
- path = self.path
dir, rest = self.cgi_info
- i = path.find('/', len(dir) + 1)
+ i = rest.find('/')
while i >= 0:
- nextdir = path[:i]
- nextrest = path[i+1:]
+ nextdir = rest[:i]
+ nextrest = rest[i+1:]
scriptdir = self.translate_path(nextdir)
if os.path.isdir(scriptdir):
dir, rest = nextdir, nextrest
- i = path.find('/', len(dir) + 1)
+ i = rest.find('/')
else:
break
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
index 4083afc..b2bce1c 100644
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -346,6 +346,7 @@ class CGIHTTPServerTestCase(BaseTestCase):
self.parent_dir = tempfile.mkdtemp()
self.cgi_dir = os.path.join(self.parent_dir, 'cgi-bin')
os.mkdir(self.cgi_dir)
+ self.nocgi_path = None
self.file1_path = None
self.file2_path = None
@@ -366,6 +367,11 @@ class CGIHTTPServerTestCase(BaseTestCase):
self.tearDown()
self.skipTest("Python executable path is not encodable to utf-8")
+ self.nocgi_path = os.path.join(self.parent_dir, 'nocgi.py')
+ with open(self.nocgi_path, 'w') as fp:
+ fp.write(cgi_file1 % self.pythonexe)
+ os.chmod(self.nocgi_path, 0o777)
+
self.file1_path = os.path.join(self.cgi_dir, 'file1.py')
with open(self.file1_path, 'w', encoding='utf-8') as file1:
file1.write(cgi_file1 % self.pythonexe)
@@ -383,6 +389,8 @@ class CGIHTTPServerTestCase(BaseTestCase):
os.chdir(self.cwd)
if self.pythonexe != sys.executable:
os.remove(self.pythonexe)
+ if self.nocgi_path:
+ os.remove(self.nocgi_path)
if self.file1_path:
os.remove(self.file1_path)
if self.file2_path:
@@ -439,6 +447,10 @@ class CGIHTTPServerTestCase(BaseTestCase):
self.assertEqual((b'Hello World' + self.linesep, 'text/html', 200),
(res.read(), res.getheader('Content-type'), res.status))
+ def test_issue19435(self):
+ res = self.request('///////////nocgi.py/../cgi-bin/nothere.sh')
+ self.assertEqual(res.status, 404)
+
def test_post(self):
params = urllib.parse.urlencode(
{'spam' : 1, 'eggs' : 'python', 'bacon' : 123456})