node-http-tunnel
node-http-tunnel copied to clipboard
An HTTP tunnel for bypassing restrictive firewalls.
HTTP tunnel for node.js
Objective
Tunnel arbitrary TCP connections through HTTP.Security
Use an SSH tunnel over the HTTP tunnelForward ports over the HTTP tunnel
Use an SSH tunnel over the HTTP tunnelHow to use
# On server outside the firewall
./server &
disown
exit
On your machine inside the firewall
./client # This sets up a SOCKS5 server on your local machine
Use with SSH
ssh -o ProxyCommand "./ssh-connect %h %p"
pwnt.