Get SSL information using the command line

To get SSL information using the command line, you can use openssl s_client , cURL, or Nmap. These are useful to check, verify and diagnose SSL issues from the command line: cURL: curl -Iv https://apple.com -I for the header, and -v for verbose OpenSSL: openssl s_client -showcerts…