Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sslyze/plugins/certificate_info/implementation.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def result_for_completed_scan_jobs(
received_chain_as_pem, ocsp_response, custom_ca_file, was_sni_used = completed_job.get_result()
assert received_chain_as_pem, "Should never happen as we always retrieve a certificate chain"

except TlsHandshakeFailed as exc:
except (TlsHandshakeFailed, nassl._nassl.OpenSSLError) as exc:
# Can happen when trying to connect with specific cipher suites (such as RSA or non-RSA)
# or when connectivity is bad
all_handshake_failed_exceptions.append(exc)
Expand Down
Loading