This app tests a given URL for SQL injection vulnerabilities. It uses a list of common SQL injection payloads to inject into the URL and checks if the response contains any SQL errors or vulnerabilities.
TThis script is intended for educational purposes and ethical security testing only. Do not use it to attack websites without proper authorization. Unauthorized testing may violate local laws and could result in legal consequences.The author assumes no responsibility for any misuse or damage caused by this app. Use responsibly and with proper authorization
- Make sure you have Python installed on your system.
- Install the required dependencies by running the following command:
pip install requests
- Run the app by passing the URL as an argument:
python app.py "http://example.com/vulnerable_page.php?id="
python app.py "http://example.com/vulnerable_page.php?id="
The app will test the provided URL for SQL injection and print the result.
This app is a basic example and may not cover all possible SQL injection scenarios. It's important to use it responsibly and with proper authorization.
Remember to replace "http://example.com/vulnerable_page.php?id="
with the actual URL you want to test.
If you would like to contribute to this repository, please fork the repository and submit a pull request with your changes. Before submitting a pull request, please ensure that your changes are well-documented and thoroughly tested.