You can simply extract information about the SSL certificate of HTTP connections using OpenSSL<code>
openssl s_client -connect ${URL}:${PORT}</code>
For example:
<code>
openssl s_client -connect checkout.google.com:443</code>
From there, it is only redirecting the output to a file or extracting information out of...
↧