Download a TLS certificate from the command line
+1
−0
What command can be used to download the TLS certificate of a site such as https://wikipedia.org?
1 answer
+0
−0
You can use openssl for that.
openssl s_client -connect codidact.com:443 -showcerts </dev/null | openssl x509 > codidact.pem

0 comment threads