Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b3acaccf
Commit
b3acaccf
authored
Nov 11, 2013
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Transplant of rev 544b654d000c: directory traversal attack in CGIHttpRequestHandler.
parent
85b8be1a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
5 deletions
+21
-5
Lib/http/server.py
Lib/http/server.py
+4
-5
Lib/test/test_httpservers.py
Lib/test/test_httpservers.py
+12
-0
Misc/NEWS
Misc/NEWS
+5
-0
No files found.
Lib/http/server.py
View file @
b3acaccf
...
@@ -987,18 +987,17 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):
...
@@ -987,18 +987,17 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):
def
run_cgi
(
self
):
def
run_cgi
(
self
):
"""Execute a CGI script."""
"""Execute a CGI script."""
path
=
self
.
path
dir
,
rest
=
self
.
cgi_info
dir
,
rest
=
self
.
cgi_info
i
=
path
.
find
(
'/'
,
len
(
dir
)
+
1
)
i
=
rest
.
find
(
'/'
)
while
i
>=
0
:
while
i
>=
0
:
nextdir
=
path
[:
i
]
nextdir
=
rest
[:
i
]
nextrest
=
path
[
i
+
1
:]
nextrest
=
rest
[
i
+
1
:]
scriptdir
=
self
.
translate_path
(
nextdir
)
scriptdir
=
self
.
translate_path
(
nextdir
)
if
os
.
path
.
isdir
(
scriptdir
):
if
os
.
path
.
isdir
(
scriptdir
):
dir
,
rest
=
nextdir
,
nextrest
dir
,
rest
=
nextdir
,
nextrest
i
=
path
.
find
(
'/'
,
len
(
dir
)
+
1
)
i
=
rest
.
find
(
'/'
)
else
:
else
:
break
break
...
...
Lib/test/test_httpservers.py
View file @
b3acaccf
...
@@ -325,6 +325,7 @@ class CGIHTTPServerTestCase(BaseTestCase):
...
@@ -325,6 +325,7 @@ class CGIHTTPServerTestCase(BaseTestCase):
self
.
parent_dir
=
tempfile
.
mkdtemp
()
self
.
parent_dir
=
tempfile
.
mkdtemp
()
self
.
cgi_dir
=
os
.
path
.
join
(
self
.
parent_dir
,
'cgi-bin'
)
self
.
cgi_dir
=
os
.
path
.
join
(
self
.
parent_dir
,
'cgi-bin'
)
os
.
mkdir
(
self
.
cgi_dir
)
os
.
mkdir
(
self
.
cgi_dir
)
self
.
nocgi_path
=
None
self
.
file1_path
=
None
self
.
file1_path
=
None
self
.
file2_path
=
None
self
.
file2_path
=
None
...
@@ -345,6 +346,11 @@ class CGIHTTPServerTestCase(BaseTestCase):
...
@@ -345,6 +346,11 @@ class CGIHTTPServerTestCase(BaseTestCase):
self
.
tearDown
()
self
.
tearDown
()
self
.
skipTest
(
"Python executable path is not encodable to utf-8"
)
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'
)
self
.
file1_path
=
os
.
path
.
join
(
self
.
cgi_dir
,
'file1.py'
)
with
open
(
self
.
file1_path
,
'w'
,
encoding
=
'utf-8'
)
as
file1
:
with
open
(
self
.
file1_path
,
'w'
,
encoding
=
'utf-8'
)
as
file1
:
file1
.
write
(
cgi_file1
%
self
.
pythonexe
)
file1
.
write
(
cgi_file1
%
self
.
pythonexe
)
...
@@ -362,6 +368,8 @@ class CGIHTTPServerTestCase(BaseTestCase):
...
@@ -362,6 +368,8 @@ class CGIHTTPServerTestCase(BaseTestCase):
os
.
chdir
(
self
.
cwd
)
os
.
chdir
(
self
.
cwd
)
if
self
.
pythonexe
!=
sys
.
executable
:
if
self
.
pythonexe
!=
sys
.
executable
:
os
.
remove
(
self
.
pythonexe
)
os
.
remove
(
self
.
pythonexe
)
if
self
.
nocgi_path
:
os
.
remove
(
self
.
nocgi_path
)
if
self
.
file1_path
:
if
self
.
file1_path
:
os
.
remove
(
self
.
file1_path
)
os
.
remove
(
self
.
file1_path
)
if
self
.
file2_path
:
if
self
.
file2_path
:
...
@@ -418,6 +426,10 @@ class CGIHTTPServerTestCase(BaseTestCase):
...
@@ -418,6 +426,10 @@ class CGIHTTPServerTestCase(BaseTestCase):
self
.
assertEqual
((
b'Hello World'
+
self
.
linesep
,
'text/html'
,
200
),
self
.
assertEqual
((
b'Hello World'
+
self
.
linesep
,
'text/html'
,
200
),
(
res
.
read
(),
res
.
getheader
(
'Content-type'
),
res
.
status
))
(
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
):
def
test_post
(
self
):
params
=
urllib
.
parse
.
urlencode
(
params
=
urllib
.
parse
.
urlencode
(
{
'spam'
:
1
,
'eggs'
:
'python'
,
'bacon'
:
123456
})
{
'spam'
:
1
,
'eggs'
:
'python'
,
'bacon'
:
123456
})
...
...
Misc/NEWS
View file @
b3acaccf
...
@@ -7,6 +7,11 @@ What's New in Python 3.3.3?
...
@@ -7,6 +7,11 @@ What's New in Python 3.3.3?
*Release date: XX-Nov-2013*
*Release date: XX-Nov-2013*
Library
-------
- Issue #19435: Fix directory traversal attack on CGIHttpRequestHandler.
Tests
Tests
-----
-----
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment