Local Port Forwards

# Local Port Forwarding (using rinetd)
# Target Machine // 10.0.0.1
Python -m SimpleHTTPServer 80
# Gateway Machine
apt-get install rinetd
nano /etc/rinetd.conf
localhost localport remotehost remoteport
127.0.0.1 53 10.0.0.1 80
# Kali Machine // http://gatway:53 → http://10.0.0.1:80Last updated