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
2e441f78
Kaydet (Commit)
2e441f78
authored
Tem 25, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix a denial-of-service attack, SF bug #443120.
Code by Evan Simpson.
üst
7cf7e7e5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
cgi.py
Lib/cgi.py
+14
-4
No files found.
Lib/cgi.py
Dosyayı görüntüle @
2e441f78
...
...
@@ -243,10 +243,13 @@ def parse_multipart(fp, pdict):
point in having two implementations of the same parsing algorithm.
"""
boundary
=
""
if
pdict
.
has_key
(
'boundary'
):
boundary
=
pdict
[
'boundary'
]
else
:
boundary
=
""
if
not
valid_boundary
(
boundary
):
raise
ValueError
,
(
'Invalid boundary in multipart form:
%
s'
%
`ib`
)
nextpart
=
"--"
+
boundary
lastpart
=
"--"
+
boundary
+
"--"
partdict
=
{}
...
...
@@ -595,14 +598,18 @@ class FieldStorage:
def
read_multi
(
self
,
environ
,
keep_blank_values
,
strict_parsing
):
"""Internal: read a part that is itself multipart."""
ib
=
self
.
innerboundary
if
not
valid_boundary
(
ib
):
raise
ValueError
,
(
'Invalid boundary in multipart form:
%
s'
%
`ib`
)
self
.
list
=
[]
klass
=
self
.
FieldStorageClass
or
self
.
__class__
part
=
klass
(
self
.
fp
,
{},
self
.
innerboundary
,
part
=
klass
(
self
.
fp
,
{},
ib
,
environ
,
keep_blank_values
,
strict_parsing
)
# Throw first part away
while
not
part
.
done
:
headers
=
rfc822
.
Message
(
self
.
fp
)
part
=
klass
(
self
.
fp
,
headers
,
self
.
innerboundary
,
part
=
klass
(
self
.
fp
,
headers
,
ib
,
environ
,
keep_blank_values
,
strict_parsing
)
self
.
list
.
append
(
part
)
self
.
skip_lines
()
...
...
@@ -999,6 +1006,9 @@ def escape(s, quote=None):
s
=
s
.
replace
(
'"'
,
"""
)
return
s
def
valid_boundary
(
s
,
_vb_pattern
=
"^[ -~]{0,200}[!-~]$"
):
import
re
return
re
.
match
(
_vb_pattern
,
s
)
# Invoke mainline
# ===============
...
...
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