This is a project is a web server that has a vulnerable and a unvulnerable version.
This project was made using python as the back-end language and the standard HTML, CSS and JavaScript to the front-end.
The framework we decided to use is Flask.
- Create a virtual environment for python:
python -m venv .venv
You can choose any name you want for the directory.
- Activiate the environment. (The activation steps dependo on the system you are using).
- Install Flask:
pip install Flask
- Run server:
flask --app app run --debug
The server goes on port 5000 so just go http://localhost:5000.