This directory contains example scripts demonstrating various use cases and extensions of the main exploit.
- custom_query_example.py - How to extract custom data from the database
- batch_testing_example.py - Test multiple targets from a file
- proxy_example.py - Use the exploit through a proxy
All examples require the main exploit dependencies:
pip install -r ../requirements.txtExtract specific data beyond admin credentials:
python custom_query_example.py -u http://target.com/forum/ -q "SELECT version()"Test multiple targets from a file:
# Create targets.txt with URLs (one per line)
echo "http://target1.com/forum/" >> targets.txt
echo "http://target2.com/forum/" >> targets.txt
# Run batch test
python batch_testing_example.py -f targets.txtRoute traffic through a proxy:
python proxy_example.py -u http://target.com/forum/ -p http://127.0.0.1:8080These examples are templates. Feel free to modify them for your specific authorized testing needs.
These scripts are for authorized security testing only. See the main README.md for full disclaimer.