Skip to content

Commit

Permalink
pythongh-79846: Make ssl.create_default_context() ignore invalid cert…
Browse files Browse the repository at this point in the history
…ificates (pythonGH-91740)

An error in one certificate should not cause the whole thing to fail.

Co-authored-by: Serhiy Storchaka <[email protected]>
  • Loading branch information
pukkandan and serhiy-storchaka authored Aug 7, 2024
1 parent b6c80e2 commit 9e551f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Lib/ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,18 +513,17 @@ def set_alpn_protocols(self, alpn_protocols):
self._set_alpn_protocols(protos)

def _load_windows_store_certs(self, storename, purpose):
certs = bytearray()
try:
for cert, encoding, trust in enum_certificates(storename):
# CA certs are never PKCS#7 encoded
if encoding == "x509_asn":
if trust is True or purpose.oid in trust:
certs.extend(cert)
try:
self.load_verify_locations(cadata=cert)
except SSLError as exc:
warnings.warn(f"Bad certificate in Windows certificate store: {exc!s}")
except PermissionError:
warnings.warn("unable to enumerate Windows certificate store")
if certs:
self.load_verify_locations(cadata=certs)
return certs

def load_default_certs(self, purpose=Purpose.SERVER_AUTH):
if not isinstance(purpose, _ASN1Object):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Makes :code:`ssl.create_default_context()` ignore invalid certificates in
the Windows certificate store

0 comments on commit 9e551f9

Please sign in to comment.