-
-
Save brianmriley/ae2bb806361dd462e9342c4cee714eb1 to your computer and use it in GitHub Desktop.
How to fetch the SSL certificate from www.okta.com
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
echo '' | openssl s_client -connect www.okta.com:443 |
openssl s_client -host dev-808161.okta.com -port 443 -prexit -showcerts
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Additionally we can list the entire cert chain with:
openssl s_client -showcerts -verify 5 -connect www.okta.com:443 < /dev/null