summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-27 06:34:48 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-27 06:34:48 (GMT)
commitbf3f8eb9602154c9434cd82e61d1b103c30615f0 (patch)
treed5df932a151efb3f0fbe49de78cbc96956dcd91e /Misc/NEWS
parent28e78414f9175774f26d8c564c7c1d3b078f99de (diff)
downloadcpython-bf3f8eb9602154c9434cd82e61d1b103c30615f0.zip
cpython-bf3f8eb9602154c9434cd82e61d1b103c30615f0.tar.gz
cpython-bf3f8eb9602154c9434cd82e61d1b103c30615f0.tar.bz2
Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than
100 headers are read. Adapted from patch by Jyrki Pulliainen.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 24f1847..6d01b35 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,9 @@ Core and Builtins
Library
-------
+- Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more than
+ 100 headers are read. Adapted from patch by Jyrki Pulliainen.
+
- Issue #16040: CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to
prevent readline() calls from consuming too much memory. Patch by Jyrki
Pulliainen.