Port Forwarding Tools

plink -D 9050 ubuntu@<IP>

Proxifier

Proxifier is a Windows tool that creates a tunneled network for desktop client applications and allows it to operate through a SOCKS or HTTPS proxy and allows for proxy chaining.

Sshuttle

sshuttle -r ubuntu@10.129.202.64 <target-ip-subnet> -v 

Rpivot

Rpivot is a reverse SOCKS proxy tool written in Python for SOCKS tunneling.

# Setup Server
python2.7 server.py --proxy-port 9050 --server-port 9999 --server-ip 0.0.0.0

# Upload client.py to Target

# On Target machine
python2.7 client.py --server-ip <IP> --server-port 9999

Netsh

Last updated