Skip to content

A program used to submit bogus data to phishing links

License

Notifications You must be signed in to change notification settings

samerziade/phishing-flooder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phishing Flooder CircleCI

Summary

A program used to flood phishing links with bogus data in order to try to protect the real information from actual victims.

Docker

Running Locally

Config

Copy config.example.json to src/app.config.json and update the configuration accordingly. The application is setup to read from that file, and Git will ignore it.

Please refer to config.ts for the type definitions of the configuration file, and config.example.json to see a list of all possible options.

Application Config

Key Type Description
count number Number of requests to send. Set to 0 to run forever
interval number The time to wait between requests
log number Numbers outlined in the next section

Test Web Server

You can use the provided docker-compose.yml file. The provided config.example.json file is configured to run using that server.

cd docker/test
docker-compose up -d

Run

npm install
npm start

Test

Test coverage is still not 100%, but will be be working on adding more as time permits.

npm run test