Port Fowarding and Proxying
Port Fowarding and Proxying
Port Fowarding
SSH Tunneling/Local Port Forwarding
ssh user@<ip> -p port -L 8001:127.0.0.1:8080 -fNSSH Remote Port Forwarding
ssh -R 5555:127.0.0.1:5555 -p2222 <user>@<ip>Socat - Port Forward
./socat.exe TCP-LISTEN:8002,fork,reuseaddr TCP:127.0.0.1:8080chisel - Remote Port Forward
./chisel server -p <LISTEN_PORT> --reverse &./chisel client <ATTACKING_IP>:<LISTEN_PORT> R:<LOCAL_PORT>:<TARGET_IP>:<TARGET_PORT> &Chisel - Local Port Forward
pklink - Remote Port Forward
Proxying - Network Pivoting
sshuttle (Unix) - proxying
SSH + Proxychains
chisel - Reverse Proxy
chisel - Forward Proxy
metasploit - proxying
Last updated
