SSH Tunneling
Last updated
Last updated
To forward victim's port 80 to your local port 8181
ssh -L 8181:127.0.0.1:80 -N victim@10.10.10.111
To forward port 80 to victim's machine local port 7777
ssh -R 7777:127.0.0.1:80 -N victim@10.10.10.111
Victim have port 5901 listening locally
Port forward to kali