Spam call phone numbers using Twilio.
For educational purposes only! Do not use this to spam call any number you don't own. I'm not responsible nor liable for any legal issue this may cause.
- Node.js & NPM
- A Twilio account with:
- usable account credit
- a Programmable Voice API phone number
- a TwiML Bin (sample data found in
twiml.xml
)
- A phone number to test it on (either your own or ask a friend for permission)
$ git clone https://github.com/tycrek/neo-call-flooder && cd neo-call-flooder
$ npm i
$ cp default.env .env
- Open
.env
and add your information.- Target and source phone numbers should be in the format of
+12223334444
MAX
is the desired maximum calls to make. Default is0
which loops untilCTRL+C
is pressed.
- Target and source phone numbers should be in the format of
- Run
npm start
to start the flooder. PressCTRL+C
to stop the flooder (or wait forMAX_CALLS
calls to be placed).