Allow SSL 3.0, so we can see old and bad servers.

This commit is contained in:
Matthew McPherrin
2017-02-19 14:36:31 -08:00
parent 521af8973e
commit c368df917a
+1
View File
@@ -31,6 +31,7 @@ func tlsConfigForConnect(connectName, clientCert, clientKey string) (*tls.Config
// We verify later manually so we can print results
InsecureSkipVerify: true,
ServerName: connectName,
MinVersion: tls.VersionSSL30,
}
if clientCert != "" {