This application is a demonstration prototype just to show how to perform SQLi attack.
- Setup postgresql database
sudo -u postgres createuser -P me
sudo -u postgres createdb -O me data
export PGPASSWORD=******
- Install
pipenv install
- run
pipenv shell
cd sqli
python manage.py runserver
Open http://localhost:8000/?user=me
Find SQL injection to see all tasks (not only for one user).
Create a new branch and try to fix this SQL Injection.
To see solution:
git checkout fix