Port Forwarding

SSH

Local Port Forwarding

Suppose the victim has port 8080 internally (127.0.0.1), and you want to see it, so you create a tunnel to redirect the content of the internal and remote 8080 port to your local port 8001:

ssh -L 8001:127.0.0.1:8080 user@host

Last updated