summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2013-09-25 13:36:58 (GMT)
committerBarry Warsaw <barry@python.org>2013-09-25 13:36:58 (GMT)
commitd6fddf3d15b5c7b012c919b48de6447d7a250f1c (patch)
treeb0d2e57ea25764cc0d4eff6e85b8aab03cb23cab /Misc
parent4e95d601917b4429d41a5e437762d619608573c1 (diff)
downloadcpython-d6fddf3d15b5c7b012c919b48de6447d7a250f1c.zip
cpython-d6fddf3d15b5c7b012c919b48de6447d7a250f1c.tar.gz
cpython-d6fddf3d15b5c7b012c919b48de6447d7a250f1c.tar.bz2
- Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by
limiting the call to readline(). Original patch by Michał Jastrzębski and Giampaolo Rodola. with test fixes by Serhiy Storchaka.
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 e6c60b9..8a0db6e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,10 @@ Core and Builtins
Library
-------
+- Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by
+ limiting the call to readline(). Original patch by Michał
+ Jastrzębski and Giampaolo Rodola.
+
- Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to
limit line length. Patch by Emil Lind.