akashzcoder / phisher-man

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PhisherMan

Screenshot

To run the overall server:

Step 1: docker-compose build
Step 2: docker-compose up -d

To bring the server down:

  1. docker-compose stop -v

To manually Run Application Backend

  1. Install Python & pip
  2. Navigate into the /backend/ folder

Create a virtual python environment:

  1. python3 -m venv env
  2. source env/bin/activate (On Windows use env\Scripts\activate)

Install Django and the Django REST Framework into the virtual python environment:

  1. pip install django
  2. pip install djangorestframework

Start the Server:

  1. Navigate into /backend/phish_manager/
  2. Run python manage.py runserver
  3. Go to http://127.0.0.1:8000/incidents/ to view all incidents

About

License:MIT License


Languages

Language:Python 95.1%Language:Dockerfile 4.9%