I am trying to loop through an array of addresses, and check their tls cert status. I pieced together a program from various examples that do other things.
My first step in processing is
conn, err := tls.Dial("tcp", url, nil)
where 'url' is passed in from the array (I do import crypto/tls
). Before I go on to pulling the cert, I check for errors:
if err != nil {
log.Printf("Unable to get %q - %s
", url, err)
return
}
Here is a snippet of the array (with only test addresses for now):
var urls = []string{
"https://google.com:443",
"https://expired.badssl.com:443",
"[https://wrong.host.badssl.com]:443",
"[https://self-signed.badssl.com]:443"
}
The first 2 return too many colons in address
I found a suggestion to fix that using the brackets. The next 2 addresses, with the brackets, return no such host
Where is my error?