I want to download the ssl certificate from, say https://www.google.com, using wget or any other commands. Any unix command line? wget or openssl?
I want to download the ssl certificate from, say https://www.google.com, using wget or any other commands. Any unix command line? wget or openssl?
In order to download the certificate, you need to use the client built into openssl like so:
That will save the certificate to
/tmp/$SERVERNAME.cert
.The
-servername
is used to select the correct certificate when multiple are presented, in the case of SNI.You can use
-showcerts
if you want to download all the certificates in the chain. But if you just want to download the server certificate, there is no need to specify-showcerts
. Thex509
at the end will strip out the intermediate certs, you will need to usesed -n '/-----BEGIN/,/-----END/p'
instead of the x509 at the end.echo -n
gives a response to the server, so that the connection is releasedopenssl x509
removes information about the certificate chain and connection details. This is the preferred format to import the certificate into other keystores.I found the answer. Openssl provides it.
The GNUTLS client tool,
gnutls-cli
, can also make this easy:The program is designed to provide an interactive client to the site, so you need to give it empty input (in this example, from
/dev/null
) to end the interactive session.this mode of openssl expects stdin, so we provide it via
true |
, this connects to the server specified in the -connect parameter.2>/dev/null
silences errors (optional), we can pass the whole output into the x509 parser, specifying/dev/stdin
to use the shell pipe as the input file. And that will output just the-----BEGIN CERTIFICATE-----
to-----END CERTIFICATE-----
portion of thes_client
output. You can redirect that to a file by adding> google.com.pem
to the end of the command.As best I can tell, this does not verify the certificate chain, it only can tell you what ssl identity the end server provides.
based on @bignose answer, here is a self-contained version that fits well in e.g. a chef recipe:
Alternative syntax using Ex and process substitution: