summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-06-23 13:08:23 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-06-23 13:08:23 (GMT)
commit9ee0203057e7a566e562233e2c48e0c752ecc989 (patch)
treeca755c229f4cd9f231ef0d6d10b3130a4b89ca14 /Misc
parent4569cd5eab5092c4508e6d0471eb9f535e71193a (diff)
downloadcpython-9ee0203057e7a566e562233e2c48e0c752ecc989.zip
cpython-9ee0203057e7a566e562233e2c48e0c752ecc989.tar.gz
cpython-9ee0203057e7a566e562233e2c48e0c752ecc989.tar.bz2
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 04b5e41..95b1716 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -35,6 +35,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 #18248: Fix libffi build on AIX.
- Issue #18259: Declare sethostname in socketmodule.c for AIX