Ssl – Can Netcat talk to an encrypted port

netcatssl

I am doing some trouble shooting on an application that listens on tcp 443. This particular application talks via SSL. I wanted to connect to it with netcat. Is this possible?

Note: I'm not asking if netcat can encrypt its traffic.

Best Answer

You should use openssl s_client -connect server:port to debug applications over SSL connections.