Skip to content

Instantly share code, notes, and snippets.

@SaltwaterC
Last active April 5, 2019 14:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save SaltwaterC/cad09505efc8bf17d4ba to your computer and use it in GitHub Desktop.
Save SaltwaterC/cad09505efc8bf17d4ba to your computer and use it in GitHub Desktop.
get_cert
function get_cert()
{
local host="$1"
local port="$2"
if [ -z "$port" ]
then
port="443"
fi
openssl s_client -showcerts -connect $host:$port -servername $host </dev/null 2>/dev/null | openssl x509 -text -noout
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment