diff options
author | Georg Brandl <georg@python.org> | 2014-09-30 12:45:39 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-09-30 12:45:39 (GMT) |
commit | eaca8616ab0e219ebb5cf37d495f4bf336ec0f5e (patch) | |
tree | b852d80486edb58b2fe1f67eba92547a319e391d /Misc/NEWS | |
parent | 210ee47e3340d8e689d8cce584e7c918d368f16b (diff) | |
download | cpython-eaca8616ab0e219ebb5cf37d495f4bf336ec0f5e.zip cpython-eaca8616ab0e219ebb5cf37d495f4bf336ec0f5e.tar.gz cpython-eaca8616ab0e219ebb5cf37d495f4bf336ec0f5e.tar.bz2 |
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.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.2.6? Library ------- +- 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. + - Issue #16042: CVE-2013-1752: smtplib: Limit amount of data read by limiting the call to readline(). Original patch by Christian Heimes. |