Get SSL Certificate from Server

This tool will help you to extract the all certificate chain of the given url or servername






Thanks for using this software, for Cofee/Beer/Amazon bill and further development of this project please Share.

Any private key value that you enter or we generate is not stored on this site, this tool is provided via an HTTPS URL to ensure that private keys cannot be stolen, for extra security run this software on your network, no cloud dependency

Asking for donation sound bad to me, so i'm raising fund from by offering all my Nine book for just $9


How to get certificate using OpenSSL

Get the SSL certificate of a website using openssl command:

A one-liner to extract the certificate from a remote server in PEM format, this time using sed

echo | openssl s_client -servername **NAME** -connect **HOST:PORT** |\
  sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > certificate.crt
openssl s_client -connect www.google.com:443 2>/dev/null </dev/null |  sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p'

With SNI

openssl s_client -showcerts -servername www.example.com -connect www.example.com:443 </dev/null