local-port-forwarding
SSH - Forward one local port (to the compromised host)
ssh -L 1234:localhost:3306 ubuntu@<compromised_host>nmap -p 1234 -sVC localhostnetstat -antp | grep 1234ssh -L 1234:localhost:3306 -L 8080:localhost:80 ubuntu@10.129.202.64 Chisel - Local port forwarding (reverse)
chisel server -p 8000 -reversechisel client 10.10.16.16:8000 R:80:172.19.0.4:80 R:6379:172.19.0.2:6379Chisel - Local port forwarding
Last updated