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
a112a8ae
Kaydet (Commit)
a112a8ae
authored
Mar 12, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22928: Disabled HTTP header injections in http.client.
Original patch by Demian Brecht.
üst
c775ad61
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
97 additions
and
0 deletions
+97
-0
client.py
Lib/http/client.py
+37
-0
test_httplib.py
Lib/test/test_httplib.py
+57
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/http/client.py
Dosyayı görüntüle @
a112a8ae
...
...
@@ -70,6 +70,7 @@ import email.parser
import
email.message
import
io
import
os
import
re
import
socket
import
collections
from
urllib.parse
import
urlsplit
...
...
@@ -217,6 +218,34 @@ MAXAMOUNT = 1048576
_MAXLINE
=
65536
_MAXHEADERS
=
100
# Header name/value ABNF (http://tools.ietf.org/html/rfc7230#section-3.2)
#
# VCHAR = %x21-7E
# obs-text = %x80-FF
# header-field = field-name ":" OWS field-value OWS
# field-name = token
# field-value = *( field-content / obs-fold )
# field-content = field-vchar [ 1*( SP / HTAB ) field-vchar ]
# field-vchar = VCHAR / obs-text
#
# obs-fold = CRLF 1*( SP / HTAB )
# ; obsolete line folding
# ; see Section 3.2.4
# token = 1*tchar
#
# tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*"
# / "+" / "-" / "." / "^" / "_" / "`" / "|" / "~"
# / DIGIT / ALPHA
# ; any VCHAR, except delimiters
#
# VCHAR defined in http://tools.ietf.org/html/rfc5234#appendix-B.1
# the patterns for both name and value are more leniant than RFC
# definitions to allow for backwards compatibility
_is_legal_header_name
=
re
.
compile
(
rb
'[^:
\
s][^:
\r\n
]*'
)
.
fullmatch
_is_illegal_header_value
=
re
.
compile
(
rb
'
\n
(?![
\t
])|
\r
(?![
\t\n
])'
)
.
search
class
HTTPMessage
(
email
.
message
.
Message
):
# XXX The only usage of this method is in
...
...
@@ -1060,12 +1089,20 @@ class HTTPConnection:
if
hasattr
(
header
,
'encode'
):
header
=
header
.
encode
(
'ascii'
)
if
not
_is_legal_header_name
(
header
):
raise
ValueError
(
'Invalid header name
%
r'
%
(
header
,))
values
=
list
(
values
)
for
i
,
one_value
in
enumerate
(
values
):
if
hasattr
(
one_value
,
'encode'
):
values
[
i
]
=
one_value
.
encode
(
'latin-1'
)
elif
isinstance
(
one_value
,
int
):
values
[
i
]
=
str
(
one_value
)
.
encode
(
'ascii'
)
if
_is_illegal_header_value
(
values
[
i
]):
raise
ValueError
(
'Invalid header value
%
r'
%
(
values
[
i
],))
value
=
b
'
\r\n\t
'
.
join
(
values
)
header
=
header
+
b
': '
+
value
self
.
_output
(
header
)
...
...
Lib/test/test_httplib.py
Dosyayı görüntüle @
a112a8ae
...
...
@@ -148,6 +148,33 @@ class HeaderTests(TestCase):
conn
.
putheader
(
'Content-length'
,
42
)
self
.
assertIn
(
b
'Content-length: 42'
,
conn
.
_buffer
)
conn
.
putheader
(
'Foo'
,
' bar '
)
self
.
assertIn
(
b
'Foo: bar '
,
conn
.
_buffer
)
conn
.
putheader
(
'Bar'
,
'
\t
baz
\t
'
)
self
.
assertIn
(
b
'Bar:
\t
baz
\t
'
,
conn
.
_buffer
)
conn
.
putheader
(
'Authorization'
,
'Bearer mytoken'
)
self
.
assertIn
(
b
'Authorization: Bearer mytoken'
,
conn
.
_buffer
)
conn
.
putheader
(
'IterHeader'
,
'IterA'
,
'IterB'
)
self
.
assertIn
(
b
'IterHeader: IterA
\r\n\t
IterB'
,
conn
.
_buffer
)
conn
.
putheader
(
'LatinHeader'
,
b
'
\xFF
'
)
self
.
assertIn
(
b
'LatinHeader:
\xFF
'
,
conn
.
_buffer
)
conn
.
putheader
(
'Utf8Header'
,
b
'
\xc3\x80
'
)
self
.
assertIn
(
b
'Utf8Header:
\xc3\x80
'
,
conn
.
_buffer
)
conn
.
putheader
(
'C1-Control'
,
b
'next
\x85
line'
)
self
.
assertIn
(
b
'C1-Control: next
\x85
line'
,
conn
.
_buffer
)
conn
.
putheader
(
'Embedded-Fold-Space'
,
'is
\r\n
allowed'
)
self
.
assertIn
(
b
'Embedded-Fold-Space: is
\r\n
allowed'
,
conn
.
_buffer
)
conn
.
putheader
(
'Embedded-Fold-Tab'
,
'is
\r\n\t
allowed'
)
self
.
assertIn
(
b
'Embedded-Fold-Tab: is
\r\n\t
allowed'
,
conn
.
_buffer
)
conn
.
putheader
(
'Key Space'
,
'value'
)
self
.
assertIn
(
b
'Key Space: value'
,
conn
.
_buffer
)
conn
.
putheader
(
'KeySpace '
,
'value'
)
self
.
assertIn
(
b
'KeySpace : value'
,
conn
.
_buffer
)
conn
.
putheader
(
b
'Nonbreak
\xa0
Space'
,
'value'
)
self
.
assertIn
(
b
'Nonbreak
\xa0
Space: value'
,
conn
.
_buffer
)
conn
.
putheader
(
b
'
\xa0
NonbreakSpace'
,
'value'
)
self
.
assertIn
(
b
'
\xa0
NonbreakSpace: value'
,
conn
.
_buffer
)
def
test_ipv6host_header
(
self
):
# Default host header on IPv6 transaction should wrapped by [] if
# its actual IPv6 address
...
...
@@ -177,6 +204,36 @@ class HeaderTests(TestCase):
self
.
assertEqual
(
resp
.
getheader
(
'First'
),
'val'
)
self
.
assertEqual
(
resp
.
getheader
(
'Second'
),
'val'
)
def
test_invalid_headers
(
self
):
conn
=
client
.
HTTPConnection
(
'example.com'
)
conn
.
sock
=
FakeSocket
(
''
)
conn
.
putrequest
(
'GET'
,
'/'
)
# http://tools.ietf.org/html/rfc7230#section-3.2.4, whitespace is no
# longer allowed in header names
cases
=
(
(
b
'Invalid
\r\n
Name'
,
b
'ValidValue'
),
(
b
'Invalid
\r
Name'
,
b
'ValidValue'
),
(
b
'Invalid
\n
Name'
,
b
'ValidValue'
),
(
b
'
\r\n
InvalidName'
,
b
'ValidValue'
),
(
b
'
\r
InvalidName'
,
b
'ValidValue'
),
(
b
'
\n
InvalidName'
,
b
'ValidValue'
),
(
b
' InvalidName'
,
b
'ValidValue'
),
(
b
'
\t
InvalidName'
,
b
'ValidValue'
),
(
b
'Invalid:Name'
,
b
'ValidValue'
),
(
b
':InvalidName'
,
b
'ValidValue'
),
(
b
'ValidName'
,
b
'Invalid
\r\n
Value'
),
(
b
'ValidName'
,
b
'Invalid
\r
Value'
),
(
b
'ValidName'
,
b
'Invalid
\n
Value'
),
(
b
'ValidName'
,
b
'InvalidValue
\r\n
'
),
(
b
'ValidName'
,
b
'InvalidValue
\r
'
),
(
b
'ValidName'
,
b
'InvalidValue
\n
'
),
)
for
name
,
value
in
cases
:
with
self
.
subTest
((
name
,
value
)):
with
self
.
assertRaisesRegex
(
ValueError
,
'Invalid header'
):
conn
.
putheader
(
name
,
value
)
class
BasicTest
(
TestCase
):
def
test_status_lines
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
a112a8ae
...
...
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
- Issue #22928: Disabled HTTP header injections in http.client.
Original patch by Demian Brecht.
- Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
imp.reload(). Patch by Thomas Kluyver.
...
...
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