diff --git a/lib/extensions/admin/index.html b/lib/extensions/admin/index.html index 1f0e3a2..b46bb86 100644 --- a/lib/extensions/admin/index.html +++ b/lib/extensions/admin/index.html @@ -31,7 +31,8 @@
telnet
, netcat
, ssh
, openvpn
, etc).
$ sclient [-k] <remote> <local>
+ $ 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
printf "GET / HTTP/1.1\r\n\r\n" | sclient telebit.cloud
$ ssh -o ProxyCommand="sclient %h:443" jon.telebit.io
+
+ This is useful to be able to connect to SSH even from behind a corporate packet-inspection firewall. + It can also be used to multiplex and relay multiple ssh connections through a single host. +
+ +$ sclient example.com:443 localhost:3000
> [listening] example.com:443 <= localhost:3000
$ telnet localhost 3000
+ $ sclient whatever.com -
+> (connected to whatever.com:443 and reading from stdin)
+ Use just like netcat or telnet. A manual HTTP request, for example:
+ > GET / HTTP/1.1
+> Host: whatever.com
+> Connection: close
+>
+
+
+