summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-01-27 08:48:47 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-01-27 08:48:47 (GMT)
commitf2bf8a6ac51530e14d798a03c8e950dd934d85cd (patch)
tree3a1cc25e0096d15d7158f43ceb0a8b786b04b17b /Misc
parent889bb2969d00a548279c7e4dd237c23b100548e2 (diff)
downloadcpython-f2bf8a6ac51530e14d798a03c8e950dd934d85cd.zip
cpython-f2bf8a6ac51530e14d798a03c8e950dd934d85cd.tar.gz
cpython-f2bf8a6ac51530e14d798a03c8e950dd934d85cd.tar.bz2
Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b14e169..b70b097 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC
+ IV attack countermeasure.
+
- Issue #11603: Fix a crash when __str__ is rebound as __repr__. Patch by
Andreas Stührk.