A fast web fuzzer written in Go, forked from ffuf with additional features and Italian localization.
# Basic directory fuzzing
fuffa -w wordlist.txt -u https://example.org/FUZZ
# Italian help
fuffa -aiuto
# With filtering and colors
fuffa -w wordlist.txt -u https://example.org/FUZZ -mc all -fs 42 -c -v- 🇮🇹 Italian localization (
-aiutoflag) - 🎨 Enhanced output formatting
- 🔧 Improved user experience
- 📊 Better progress indicators
# Download from releases (when available)
wget https://github.com/Mascol9/fuffa/releases/latest/download/fuffa_linux_amd64.tar.gz
tar -xzf fuffa_linux_amd64.tar.gz
chmod +x fuffa
./fuffa -V# Clone the repository
git clone https://github.com/Mascol9/fuffa
cd fuffa
# Build
go build -ldflags "-s -w" -o fuffa .
# Run
./fuffa -VRequirements: Go 1.17 or greater
fuffa -w /path/to/wordlist -u https://target/FUZZfuffa -w vhost-wordlist.txt -u https://target -H "Host: FUZZ" -fs 4242# GET parameters
fuffa -w params.txt -u https://target/script.php?FUZZ=test_value -fs 4242
# POST data
fuffa -w passwords.txt -X POST -d "username=admin&password=FUZZ" -u https://target/login.php -fc 401fuffa -aiuto # Show help in Italianfuffa supports configuration files at $XDG_CONFIG_HOME/ffuf/ffufrc. See ffufrc.example for reference.
For complete documentation with all flags and options:
fuffa -h # English help
fuffa -aiuto # Italian help Based on ffuf by @joohoi and contributors.
See TODO.md for planned improvements and features.
