-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
controller.py
70 lines (54 loc) · 1.74 KB
/
controller.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
69
70
import time
# from honeypot_1 import HONEYPOT_1
# from honeypot_2 import HONEYPOT_2
# from honeypot_3 import HONEYPOT_3
# from honeypot_4 import HONEYPOT_4
# from honeypot_5 import HONEYPOT_5
# from honeypot_6 import HONEYPOT_6
def CONTROLLER():
print("Honeypot Controller started, booting up honeypot instances")
time.sleep(0.5)
def HONEYPOT_INSTANCE_1():
print("[CONTROLLER] Starting honeypot_user_1...")
time.sleep(0.2)
print("[CONTROLLER] honeypot_user_1 successfully started.")
# HONEYPOT_1()
time.sleep(0.5)
def HONEYPOT_INSTANCE_2():
print("[CONTROLLER] Starting honeypot_user_1...")
time.sleep(0.2)
print("[CONTROLLER] honeypot_user_2 successfully started.")
# HONEYPOT_2()
time.sleep(0.5)
def HONEYPOT_INSTANCE_3():
print("[CONTROLLER] Starting honeypot_user_1...")
time.sleep(0.2)
print("[CONTROLLER] honeypot_user_3 successfully started.")
# HONEYPOT_3()
time.sleep(0.5)
def HONEYPOT_INSTANCE_4():
print("[CONTROLLER] Starting honeypot_user_1...")
time.sleep(0.2)
print("[CONTROLLER] honeypot_user_4 successfully started.")
# HONEYPOT_4()
time.sleep(0.5)
def HONEYPOT_INSTANCE_5():
print("[CONTROLLER] Starting honeypot_user_1...")
time.sleep(0.2)
print("[CONTROLLER] honeypot_user_5 successfully started.")
# HONEYPOT_5()
time.sleep(0.5)
def HONEYPOT_INSTANCE_6():
print("[CONTROLLER] Starting honeypot_user_1...")
time.sleep(0.2)
print("[CONTROLLER] honeypot_user_6 successfully started.")
# HONEYPOT_6()
time.sleep(0.5)
if __name__ == "__main__":
CONTROLLER()
HONEYPOT_INSTANCE_1()
HONEYPOT_INSTANCE_2()
HONEYPOT_INSTANCE_3()
HONEYPOT_INSTANCE_4()
HONEYPOT_INSTANCE_5()
HONEYPOT_INSTANCE_6()