Telnet to SSL service
I wanted to telnet to a SSL service (specifically gmail’s IMAP servers) to mess around, and wanted a quick and easy command to do it. Turns out openssl can do it, which is handy because its pretty much everywhere. Here’s the command
—
openssl s_client -connect imap.gmail.com:993 -state -debug
—