Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c99874da
Kaydet (Commit)
c99874da
authored
Eki 30, 2013
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.3 (#19435)
üst
96c03df7
a50f8995
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
5 deletions
+18
-5
server.py
Lib/http/server.py
+4
-5
test_httpservers.py
Lib/test/test_httpservers.py
+12
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/http/server.py
Dosyayı görüntüle @
c99874da
...
@@ -995,18 +995,17 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):
...
@@ -995,18 +995,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
Dosyayı görüntüle @
c99874da
...
@@ -346,6 +346,7 @@ class CGIHTTPServerTestCase(BaseTestCase):
...
@@ -346,6 +346,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
...
@@ -366,6 +367,11 @@ class CGIHTTPServerTestCase(BaseTestCase):
...
@@ -366,6 +367,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
,
0
o777
)
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
)
...
@@ -383,6 +389,8 @@ class CGIHTTPServerTestCase(BaseTestCase):
...
@@ -383,6 +389,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
:
...
@@ -439,6 +447,10 @@ class CGIHTTPServerTestCase(BaseTestCase):
...
@@ -439,6 +447,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
Dosyayı görüntüle @
c99874da
...
@@ -34,6 +34,8 @@ Library
...
@@ -34,6 +34,8 @@ Library
- Issue #19424: Fix the warnings module to accept filename containing surrogate
- Issue #19424: Fix the warnings module to accept filename containing surrogate
characters.
characters.
- Issue #19435: Fix directory traversal attack on CGIHttpRequestHandler.
- Issue #19227: Remove pthread_atfork() handler. The handler was added to
- Issue #19227: Remove pthread_atfork() handler. The handler was added to
solve #18747 but has caused issues.
solve #18747 but has caused issues.
...
...
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