Run the following command in cmd:
$pip install -r requirements.txt
- To use, create a .env file containing the key-value pair:
SECRET_KEY="<your_secret_key>"
- Initialize the database by running the following code in Python Shell:
$python
>>> from app import init
>>> init()
>>> exit()
- To run the web application, run the following command:
$python app.py
- To use, create a .env file containing the key-value pair:
SECRET_KEY="<your_secret_key>"
- Initialize the database by running the following code in Python Shell:
$python
>>> from app import init
>>> init()
>>> exit()
- To run the web application, run the following command:
flask run
SQL Injection Attack is demonstrated in this application.
Reflected and Stored XSS Attack is demonstrated in this application.