Last active
April 5, 2019 14:00
-
-
Save SaltwaterC/cad09505efc8bf17d4ba to your computer and use it in GitHub Desktop.
get_cert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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