Initiate SSL secured TCP connections to remote services

Establishing a TCP connection to a SSL secured remote service is not possible using telnet or nc.

Though, you can use openssl for that:

openssl s_client -connect www.makandra.com:443
Thomas Eisenbarth