summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-06-23 13:09:26 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-06-23 13:09:26 (GMT)
commit8cfd67cfe77120dcab8dd5441bac4a6895d66d6a (patch)
tree6ed0d6c8df3276b470ea5ae9666aeda80c4ef122 /Misc
parent2ab07f01a4787336600b95cdf0312a9e6e00f34e (diff)
parent9ee0203057e7a566e562233e2c48e0c752ecc989 (diff)
downloadcpython-8cfd67cfe77120dcab8dd5441bac4a6895d66d6a.zip
cpython-8cfd67cfe77120dcab8dd5441bac4a6895d66d6a.tar.gz
cpython-8cfd67cfe77120dcab8dd5441bac4a6895d66d6a.tar.bz2
(Merge 3.3) Issue #18135: Fix a possible integer overflow in
ssl.SSLSocket.write() and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than 2 gigabytes.
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 d595287..ffbf4dd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -126,6 +126,10 @@ Core and Builtins
Library
-------
+- Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()
+ and in ssl.SSLContext.load_cert_chain() for strings and passwords longer than
+ 2 gigabytes.
+
- Issue #11016: Add C implementation of the stat module as _stat.
- Issue #18248: Fix libffi build on AIX.