You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 6, 2023. It is now read-only.
details.error.indexOf("SSL received a record that exceeded the maximum permissible length.")==0||
592
-
details.error.indexOf("Peer’s Certificate has expired.")==0||
593
-
details.error.indexOf("Unable to communicate securely with peer: requested domain name does not match the server’s certificate.")==0||
594
-
details.error.indexOf("Peer’s Certificate issuer is not recognized.")==0||
595
-
details.error.indexOf("Peer’s Certificate has been revoked.")==0||
596
-
details.error.indexOf("Peer reports it experienced an internal error.")==0||
597
-
details.error.indexOf("The server uses key pinning (HPKP) but no trusted certificate chain could be constructed that matches the pinset. Key pinning violations cannot be overridden.")==0||
598
-
details.error.indexOf("SSL received a weak ephemeral Diffie-Hellman key in Server Key Exchange handshake message.")==0||
599
-
details.error.indexOf("The certificate was signed using a signature algorithm that is disabled because it is not secure.")==0||
600
-
details.error.indexOf("Unable to communicate securely with peer: requested domain name does not match the server’s certificate.")==0||
601
-
details.error.indexOf("Cannot communicate securely with peer: no common encryption algorithm(s).")==0||
602
-
details.error.indexOf("SSL peer has no certificate for the requested DNS name.")==0
603
-
)){
582
+
// Enumerate errors that are likely due to HTTPS misconfigurations
"SSL received a record that exceeded the maximum permissible length.",
34
+
"Peer’s Certificate has expired.",
35
+
"Unable to communicate securely with peer: requested domain name does not match the server’s certificate.",
36
+
"Peer’s Certificate issuer is not recognized.",
37
+
"Peer’s Certificate has been revoked.",
38
+
"Peer reports it experienced an internal error.",
39
+
"The server uses key pinning (HPKP) but no trusted certificate chain could be constructed that matches the pinset. Key pinning violations cannot be overridden.",
40
+
"SSL received a weak ephemeral Diffie-Hellman key in Server Key Exchange handshake message.",
41
+
"The certificate was signed using a signature algorithm that is disabled because it is not secure.",
42
+
"Cannot communicate securely with peer: no common encryption algorithm(s).",
43
+
"SSL peer has no certificate for the requested DNS name."
0 commit comments