A buggy web application to store and share your photos
This project is divided into two branches
-
main
- Cyber Security- finding bugs
- patching them
-
dev
- Web Development- improvements or additions in frontend and/or backend
Once you have figured out a bug, create a POC - Proof Of Concept
You will be required to provide your POC within your Pull Request
Or else it won't be considered for evaluation and you won't be rewarded with any points whatsoever
Given that you would have to go through the code and understand how is it all working
This project may be a little harder for the beginners
No worries! During the whole event, some hints will be dropped within the respective Issue
Please refer to dev
branch
- Basic understanding of backend and frontend
- Python3 (3.7 or newer is expected)
pip
(package installer for Python)virtualenv
Read more about virtualenv
here
Assuming you have cloned this repository, following instructions will get your server running
# Create a virtual environment
virtualenv venv
# Activate it
# for Linux
source venv/bin/activate
# for Windows
.\venv\Scripts\activate
# Install required packages
pip install -r requirements.txt
# Run the server
python server.py
# For debugging, to see server requests
python app.py
# Server will run on `localhost:8080`
# you can modify this in `app.py` and/or `server.py`
Go through the code, visit the web application
See Issues to know more
For any queries related to this project, please keep them to Discord only
Have fun 😄