Predator is a simple proof-of-concept web application fuzzer designed to detect common vulnerabilities like SQL Injection and Cross-Site Scripting (XSS) in PHP-based web applications.
- Sends crafted inputs to web forms using POST requests
- Detects SQLi/XSS via response analysis
- Logs vulnerable inputs and highlights potential attacks
- Python 3.x
requestslibrary- A local web server (e.g., XAMPP, WAMP) running a PHP app
pip install -r requirements.txt- Place
vulnerable_app.phpin your web server directory (e.g., htdocs). - Update
TARGET_URLinpredator_fuzzer.pyto match your local server URL. - Run the fuzzer:
python predator_fuzzer.py