Fuzzing Websites to Find Juicy Information.
There are many free fuzzing bots on GitHub. This tool helps discover hidden files, directories, and endpoints on websites using wordlists. Feel free to recode and develop it, but don't forget to give credit and link back to my GitHub.
python3 fuzz.py # Make sure to fill list.txt with your target URLs.
python3 fuzz.py && cat results.txt
Clone the repository:
git clone https://github.com/williamlaurent/f-uzz.git
cd f-uzz
Install dependencies:
pip install -r requirements.txt
If requirements.txt
is missing, install manually:
pip install requests colorama
- Add your target domains to
list.txt
:example.com test.com
- Add fuzzing wordlists to
fuzz.txt
:admin login config.php
- Run the script:
python3 fuzz.py
- Results will be saved in
results.txt
.
- ✅ Green → 200 OK responses
- ❌ Red → Connection errors
⚠️ Yellow → Timeouts- 🚫 Magenta → User-aborted process
Made by will and crew 👨💻