diff options
author | Steve Dower <steve.dower@python.org> | 2023-02-09 19:29:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 19:29:14 +0000 |
commit | b8149a9d7e770c03475042b34bf81d33d046bc50 (patch) | |
tree | e65cfe3facb632a4cc88975286d248742e2466cd /Tools | |
parent | Apply suggestions from code review (diff) | |
download | cpython-b8149a9d7e770c03475042b34bf81d33d046bc50.tar.gz cpython-b8149a9d7e770c03475042b34bf81d33d046bc50.tar.bz2 cpython-b8149a9d7e770c03475042b34bf81d33d046bc50.zip |
gh-101726: Update the OpenSSL version to 1.1.1t (GH-101727)
Fixes CVE-2023-0286 (High) and a couple of Medium security issues.
https://www.openssl.org/news/secadv/20230207.txt
---------
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/ssl/multissltests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/ssl/multissltests.py b/Tools/ssl/multissltests.py index 91d6f558bc5..27e9032395f 100755 --- a/Tools/ssl/multissltests.py +++ b/Tools/ssl/multissltests.py @@ -47,8 +47,8 @@ OPENSSL_OLD_VERSIONS = [ ] OPENSSL_RECENT_VERSIONS = [ - "1.1.1q", - "3.0.5" + "1.1.1t", + "3.0.8" ] LIBRESSL_OLD_VERSIONS = [ |