diff --git a/Core/Resolutions/Core/CertificateInfo.py b/Core/Resolutions/Core/CertificateInfo.py index ef5cd7d..746a718 100644 --- a/Core/Resolutions/Core/CertificateInfo.py +++ b/Core/Resolutions/Core/CertificateInfo.py @@ -22,7 +22,7 @@ class CertificateInfo: websiteURL = entity['URL'] if not websiteURL.startswith('https'): continue # Ignore non-https sites - addressWithoutHttps = websiteURL[8:] + addressWithoutHttps = websiteURL[8:].split('/')[0] with sslContext.wrap_socket(socket.socket(), server_hostname=addressWithoutHttps) as s: try: