This guide will help you get up and running with GoSpoof quickly.
Basic Setup
- Setup iptables to redirect traffic:
sudo iptables -t nat -A PREROUTING -p tcp -m tcp --dport 1:65535 -j REDIRECT --to-ports 4444
- Start GoSpoof:
./goSpoof
- 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
- Learn more commands in Basic Usage
- Explore Command Line Options for more examples
- Set up YAML Configuration for custom services
Additional Reading
- Installation Guide for complete setup
- Troubleshooting Guide if you encounter issues