-
-
Save antimirov/162922f71faedfa1f8a122b09dc944b6 to your computer and use it in GitHub Desktop.
get_cert
This file contains hidden or 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