ssl unwrapper for Windows, Mac, and Linux
a poor man's alternative to openssl s_client, stunnel, socat
for the simple use case of connecting a client application that doesn't support tls+sni
through a secure connection, https proxy, or sni multiplexer
(think telnet, netcat, ssh, openvpn, etc).
$ sclient [-k] <remote> <local>
- may be used to read from stdin (like netcat)printf "GET / HTTP/1.1\r\n\r\n" | sclient telebit.cloud$ sclient example.com:443 localhost:3000
> [listening] example.com:443 <= localhost:3000
$ telnet localhost 3000
sclient is maintained simultaneously in go and node.js