Skip to content

Instantly share code, notes, and snippets.

@jeremyfelt
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremyfelt/0cea938559dd28f87a44 to your computer and use it in GitHub Desktop.
Save jeremyfelt/0cea938559dd28f87a44 to your computer and use it in GitHub Desktop.
Check signature algorithm on a server name's cert
# Use: check_cert example.com
function check_cert {
openssl s_client -servername $1 -connect $1:443 < /dev/null 2>/dev/null |\
openssl x509 -text -in /dev/stdin | grep -m 1 "Signature Algorithm" | sed -e 's/^[ \t]*//'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment