Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 1.58 KB

readme.md

File metadata and controls

26 lines (22 loc) · 1.58 KB

fish

A basic phishing app implemented in laravel for spreading awareness on how easy it is.

Requirements

Setting up a laravel project/app from github

  • clone from git using $ git clone https://github.com/spell1612/fish.git <foldername> (Foldername optional. Defaults to repo name)
  • cd into folder with $ cd <foldername> or $ cd fish by default
  • create new env file by using $ cp .env.example .env
  • Setup your local environment (create a database etc...)
  • Enter your environment details in the .env file
  • grab the dependancies with $ composer update
    • dependancies can be defined in the composer.json file
  • migrate the db changes using $ php artisan migrate
  • $ php artisan serve to run the app at localhost:8000

Routes

/dbshow to access database view (you have to manually type in that route in the browser)

I suggest removing the register feature by overriding the respective route functions in the auth/RegisterController after 1 or 2 accounts have been made. As shown here