Extract A Server Certificate From A HTTPS Connection.
Join the DZone community and get the full member experience.
Join For FreeYou can simply extract information about the SSL certificate of HTTP connections using OpenSSL
openssl s_client -connect ${URL}:${PORT}
For example:
openssl s_client -connect checkout.google.com:443
From there, it is only redirecting the output to a file or extracting information out of the stream with Perl.
HTTPS
Connection (dance)
Extract
Opinions expressed by DZone contributors are their own.
Comments