Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1 KB

README.md

File metadata and controls

43 lines (29 loc) · 1 KB

Introduction

This repository contains the application developed for the Cyber Security Base Project 1. The application intentionally includes five vulnerabilities from the OWASP Top 10 (2017) list to demonstrate common security flaws in web applications.

Requirements

  • Python
  • Django

NOTE: Ensure JavaScript is enabled in your browser for proper functionality. If you encounter any issues, clearing your browser's cache usually resolves them.

Installation guide

  1. Clone this repository to your local machine

  2. Navigate to the project root

  3. Apply migrations:

    python manage.py migrate
  4. Populate database with seed data:

    python manage.py seed

    This creates the following accounts for testing purposes:

    username: ricky
    password: SunnyvaleKing2025
    ---------------------
    username: bubbles
    password: KittyLord99
  5. Run the application and you're ready to go:

    python manage.py runserver