SSLH(1p) | User Contributed Perl Documentation | SSLH(1p) |
sslh - Switch incoming connection between SSH and SSL/HTTPS servers
sslh [ -v ]
[ -p [host:]port ]
[ -t timeout ]
[ --ssh [host:]port ]
[ --ssl [host:]port ]
sslh is a simple script that lets you switch an incoming connection on a single port between distinct SSH and SSL/HTTPS servers.
sslh listens for connections on a port and is able to redirect them either to an HTTPS web server or a SSH server.
This lets one setup both a HTTPS web server and a SSH server and access them through the same host+port.
The program follows the usual GNU command line syntax, with long options starting with two dashes.
The default is 2seconds.
Is this tool actually useful? Yes.
For example one can use it to access both a SSH server and a secure web server via a corporate proxy that only accepts to relay connections to port 443. Creating a tunnel that passes SSH connection through a CONNECT-enabled web proxy is easy with connect-tunnel (also included in the "Net::Proxy" distribution).
The proxy will let both SSH and HTTPS connections out (since they all point to port 443), and the home server will connect those incoming connections to the appropriate server. This only requires to run the HTTPS server on a non standard port (not 443).
How can this proxy find out what kind of protocol is using a TCP connection to port 443, without being connected (yet) to the server? We actually rely on a slight difference between the SSL and SSH protocols (found thanks to ethereal):
SSH-2.0-OpenSSH_3.6.1p2 Debian 1:3.6.1p2-1
This means that sslh can be used with any pair of protocols/services that share this property (the client speaks first for one and the server speaks first for the other).
Version 0.01 of the script was a quick hack designed in 2003 as a proof of concept.
Version 0.02 (and higher) are based on "Net::Proxy", and included with the "Net::Proxy" distribution. Version 0.02 didn't work, though.
Version 0.03 correctly initialised the "in" connector.
Version 0.04 lets the proxy listen on any address (instead of "localhost", which is still the default). Thanks to Dieter Voegtli for spotting this.
Net::Proxy, Net::Proxy::Connector::dual.
Copyright 2003-2006, Philippe Bruhat. All rights reserved.
This module is free software; you can redistribute it or modify it under the same terms as Perl itself.
Hey! The above document had some coding errors, which are explained below:
2021-12-26 | perl v5.32.1 |