diff options
author | Barry Warsaw <barry@python.org> | 2013-09-25 13:36:58 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2013-09-25 13:36:58 (GMT) |
commit | d6fddf3d15b5c7b012c919b48de6447d7a250f1c (patch) | |
tree | b0d2e57ea25764cc0d4eff6e85b8aab03cb23cab /Misc | |
parent | 4e95d601917b4429d41a5e437762d619608573c1 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |