Last active
February 28, 2016 22:19
-
-
Save sthorne/bbfbbf251b96b027b5da to your computer and use it in GitHub Desktop.
OpenSSL Connect to Server
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
# Regular Old HTTPS | |
openssl s_client -connect my-host:443 -state -debug | |
# HTTPS w/ SNI | |
openssl s_client -connect my-host:443 -state -debug -servername my-host |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment