SSH Tunneling
Port Forwarding
ssh -D 7000 [email protected]Map port from remote machine/network on local machine.
ssh -L 9002:127.0.0.1:3306 [email protected]Make local port accessable to remote machine.
ssh -R 9004:127.0.0.1:9002 [email protected][email protected]:~$ ~C
ssh> -L 9002:127.0.0.1:3306Proxychains
Add this following line at the end of the /etc/proxychains.conf file.
socks5 127.0.0.1 7000proxychains -q nmap -T4 -sn 172.10.0.0/24 --unprivilegedLast updated