Blame SOURCES/CVE-2019-11324.patch

75b7db
From 54e768a6dbe3cadeb456dea37bbeaf6e1e17e87c Mon Sep 17 00:00:00 2001
75b7db
From: Lumir Balhar <lbalhar@redhat.com>
75b7db
Date: Thu, 9 Jan 2020 10:47:27 +0100
75b7db
Subject: [PATCH] CVE-2019-11324 Certification mishandle when error should be
75b7db
 thrown
75b7db
75b7db
---
75b7db
 util/ssl_.py | 2 +-
75b7db
 1 file changed, 1 insertion(+), 1 deletion(-)
75b7db
75b7db
diff --git a/util/ssl_.py b/util/ssl_.py
75b7db
index 32fd9ed..f9f12ff 100644
75b7db
--- a/util/ssl_.py
75b7db
+++ b/util/ssl_.py
75b7db
@@ -319,7 +319,7 @@ def ssl_wrap_socket(sock, keyfile=None, certfile=None, cert_reqs=None,
75b7db
             if e.errno == errno.ENOENT:
75b7db
                 raise SSLError(e)
75b7db
             raise
75b7db
-    elif getattr(context, 'load_default_certs', None) is not None:
75b7db
+    elif ssl_context is None and hasattr(context, 'load_default_certs'):
75b7db
         # try to load OS default certs; works well on Windows (require Python3.4+)
75b7db
         context.load_default_certs()
75b7db
 
75b7db
-- 
75b7db
2.24.1
75b7db