diff options
author | Georg Brandl <georg@python.org> | 2013-10-27 06:16:53 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-27 06:16:53 (GMT) |
commit | 72c98d3a761457a4f2b8054458b19f051dfb5886 (patch) | |
tree | 1e249a8d08022ec1b7cf24a03d88991dc1910681 /Misc | |
parent | ca580f4ec1b08f492cbc8673e316f5cadf47aec2 (diff) | |
download | cpython-72c98d3a761457a4f2b8054458b19f051dfb5886.zip cpython-72c98d3a761457a4f2b8054458b19f051dfb5886.tar.gz cpython-72c98d3a761457a4f2b8054458b19f051dfb5886.tar.bz2 |
Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125,
for security reasons. It now doesn't match multiple wildcards nor wildcards
inside IDN fragments.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -81,6 +81,10 @@ Core and Builtins Library ------- +- Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125, + for security reasons. It now doesn't match multiple wildcards nor wildcards + inside IDN fragments. + - Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit line length. Patch by Emil Lind. |