This guide will help you get up and running with GoSpoof quickly.

Basic Setup

  1. Setup iptables to redirect traffic:
sudo iptables -t nat -A PREROUTING -p tcp -m tcp --dport 1:65535 -j REDIRECT --to-ports 4444
  1. Start GoSpoof:
./goSpoof
  1. Test your setup with nmap (must be done from a separate computer or vm):
nmap -sV IP

What to Expect

When you run nmap against your system, you should see:

  • All ports appearing as open
  • Fake service banners for each port
  • Delayed responses to slow down scanning
  • Logs of the scanning attempts

Next Steps

Additional Reading