CLI to check SSL certificate on web site
curl -vvI -k https://target.web.site The above allows you to view the certificate on the selected web site (including self signed certificates) openssl x509 -in certificate.crt -text -noout The above allows you to read the certificate on the web server
Continue reading →