summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-27 06:29:47 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-27 06:29:47 (GMT)
commit28e78414f9175774f26d8c564c7c1d3b078f99de (patch)
treec7d39909d04b0b9f313083b4c8e9da197662c397 /Misc
parent7e27abbb3936e9a7baea13ceeac6abd256bc0d6f (diff)
downloadcpython-28e78414f9175774f26d8c564c7c1d3b078f99de.zip
cpython-28e78414f9175774f26d8c564c7c1d3b078f99de.tar.gz
cpython-28e78414f9175774f26d8c564c7c1d3b078f99de.tar.bz2
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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 09cb599..24f1847 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,10 @@ Core and Builtins
Library
-------
+- 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.
+
- Issue #16041: CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to
prevent readline() calls from consuming too much memory. Patch by Jyrki
Pulliainen.