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
c1f5667b
Kaydet (Commit)
c1f5667b
authored
May 14, 2019
tarafından
Krzysztof Wojcik
Kaydeden (comit)
Victor Stinner
May 14, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-33529, email: Fix infinite loop in email header encoding (GH-12020)
üst
4d45a3b1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
14 deletions
+27
-14
_header_value_parser.py
Lib/email/_header_value_parser.py
+13
-10
test_headerregistry.py
Lib/test/test_email/test_headerregistry.py
+4
-4
test_policy.py
Lib/test/test_email/test_policy.py
+8
-0
2019-02-24-18-48-16.bpo-33529.wpNNBD.rst
....d/next/Security/2019-02-24-18-48-16.bpo-33529.wpNNBD.rst
+2
-0
No files found.
Lib/email/_header_value_parser.py
Dosyayı görüntüle @
c1f5667b
...
@@ -2723,16 +2723,19 @@ def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset):
...
@@ -2723,16 +2723,19 @@ def _fold_as_ew(to_encode, lines, maxlen, last_ew, ew_combine_allowed, charset):
lines
.
append
(
' '
)
lines
.
append
(
' '
)
# XXX We'll get an infinite loop here if maxlen is <= 7
# XXX We'll get an infinite loop here if maxlen is <= 7
continue
continue
first_part
=
to_encode
[:
text_space
]
ew
=
_ew
.
encode
(
first_part
,
charset
=
encode_as
)
to_encode_word
=
to_encode
[:
text_space
]
excess
=
len
(
ew
)
-
remaining_space
encoded_word
=
_ew
.
encode
(
to_encode_word
,
charset
=
encode_as
)
if
excess
>
0
:
excess
=
len
(
encoded_word
)
-
remaining_space
# encode always chooses the shortest encoding, so this
while
excess
>
0
:
# is guaranteed to fit at this point.
# Since the chunk to encode is guaranteed to fit into less than 100 characters,
first_part
=
first_part
[:
-
excess
]
# shrinking it by one at a time shouldn't take long.
ew
=
_ew
.
encode
(
first_part
)
to_encode_word
=
to_encode_word
[:
-
1
]
lines
[
-
1
]
+=
ew
encoded_word
=
_ew
.
encode
(
to_encode_word
,
charset
=
encode_as
)
to_encode
=
to_encode
[
len
(
first_part
):]
excess
=
len
(
encoded_word
)
-
remaining_space
lines
[
-
1
]
+=
encoded_word
to_encode
=
to_encode
[
len
(
to_encode_word
):]
if
to_encode
:
if
to_encode
:
lines
.
append
(
' '
)
lines
.
append
(
' '
)
new_last_ew
=
len
(
lines
[
-
1
])
new_last_ew
=
len
(
lines
[
-
1
])
...
...
Lib/test/test_email/test_headerregistry.py
Dosyayı görüntüle @
c1f5667b
...
@@ -1643,10 +1643,10 @@ class TestFolding(TestHeaderBase):
...
@@ -1643,10 +1643,10 @@ class TestFolding(TestHeaderBase):
self
.
assertEqual
(
self
.
assertEqual
(
h
.
fold
(
policy
=
policy
.
default
),
h
.
fold
(
policy
=
policy
.
default
),
'X-Report-Abuse: =?utf-8?q?=3Chttps=3A//www=2Emailitapp=2E'
'X-Report-Abuse: =?utf-8?q?=3Chttps=3A//www=2Emailitapp=2E'
'com/report=5F?=
\n
'
'com/report=5F
abuse
?=
\n
'
' =?utf-8?q?
abuse
=2Ephp=3Fmid=3Dxxx-xxx-xxxx'
' =?utf-8?q?=2Ephp=3Fmid=3Dxxx-xxx-xxxx'
'xxxxxxxxxxxxxxxxxxxx=3D=3D-xxx-?=
\n
'
'xxxxxxxxxxxxxxxxxxxx=3D=3D-xxx-
xx-xx
?=
\n
'
' =?utf-8?q?
xx-xx
=3E?=
\n
'
)
' =?utf-8?q?=3E?=
\n
'
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
...
...
Lib/test/test_email/test_policy.py
Dosyayı görüntüle @
c1f5667b
...
@@ -237,6 +237,14 @@ class PolicyAPITests(unittest.TestCase):
...
@@ -237,6 +237,14 @@ class PolicyAPITests(unittest.TestCase):
email
.
policy
.
EmailPolicy
.
header_factory
)
email
.
policy
.
EmailPolicy
.
header_factory
)
self
.
assertEqual
(
newpolicy
.
__dict__
,
{
'raise_on_defect'
:
True
})
self
.
assertEqual
(
newpolicy
.
__dict__
,
{
'raise_on_defect'
:
True
})
def
test_non_ascii_chars_do_not_cause_inf_loop
(
self
):
policy
=
email
.
policy
.
default
.
clone
(
max_line_length
=
20
)
actual
=
policy
.
fold
(
'Subject'
,
'ą'
*
12
)
self
.
assertEqual
(
actual
,
'Subject:
\n
'
+
12
*
' =?utf-8?q?=C4=85?=
\n
'
)
# XXX: Need subclassing tests.
# XXX: Need subclassing tests.
# For adding subclassed objects, make sure the usual rules apply (subclass
# For adding subclassed objects, make sure the usual rules apply (subclass
# wins), but that the order still works (right overrides left).
# wins), but that the order still works (right overrides left).
...
...
Misc/NEWS.d/next/Security/2019-02-24-18-48-16.bpo-33529.wpNNBD.rst
0 → 100644
Dosyayı görüntüle @
c1f5667b
Prevent fold function used in email header encoding from entering infinite
loop when there are too many non-ASCII characters in a header.
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