summaryrefslogtreecommitdiffstats
path: root/Lib/http
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2014-07-13 05:20:15 (GMT)
committerNed Deily <nad@acm.org>2014-07-13 05:20:15 (GMT)
commit55966193f2dbb03d03675bf50baef29d3b0b7520 (patch)
tree7439b15476d55e581041ef3813f4e73c27b60397 /Lib/http
parent007a90317d154536f68278a69743418d8301ca3f (diff)
parent5d0d2e6ed6b6ca99d7aa1f9a5ff9c4b0fa545f76 (diff)
downloadcpython-55966193f2dbb03d03675bf50baef29d3b0b7520.zip
cpython-55966193f2dbb03d03675bf50baef29d3b0b7520.tar.gz
cpython-55966193f2dbb03d03675bf50baef29d3b0b7520.tar.bz2
Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,
broken by the fix for security issue #19435. Patch by Zach Byrne.
Diffstat (limited to 'Lib/http')
-rw-r--r--Lib/http/server.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py
index c98df19..2a95028 100644
--- a/Lib/http/server.py
+++ b/Lib/http/server.py
@@ -1000,16 +1000,16 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):
def run_cgi(self):
"""Execute a CGI script."""
dir, rest = self.cgi_info
-
- i = rest.find('/')
+ path = dir + '/' + rest
+ i = path.find('/', len(dir)+1)
while i >= 0:
- nextdir = rest[:i]
- nextrest = rest[i+1:]
+ nextdir = path[:i]
+ nextrest = path[i+1:]
scriptdir = self.translate_path(nextdir)
if os.path.isdir(scriptdir):
dir, rest = nextdir, nextrest
- i = rest.find('/')
+ i = path.find('/', len(dir)+1)
else:
break