forked from arriven/db1000n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testconfig.json
99 lines (99 loc) · 2.2 KB
/
testconfig.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"jobs": [
{
"type": "http",
"args": {
"method": "GET",
"path": "http://localhost:8080/test?queryparam=test&s={{ random_uuid }}",
"headers": {
"Authorization": "wtf"
},
"client": {
"proxy_urls": "{{ get_proxylist }}"
},
"interval_ms": 100
}
},
{
"type": "tcp",
"args": {
"address": "localhost:9090",
"header": "test",
"body": "more_test"
}
},
{
"type": "udp",
"count": 100,
"args": {
"address": "localhost:9191",
"header": "test",
"body": "more_test",
"interval_ms": 1000
}
},
{
"type": "http",
"args": {
"method": "GET",
"path": "https://localhost:8080/search?searchid={{ random_uuid }}&l10n=ru&reqenc=&text={{ random_uuid }}",
"headers": {}
}
},
{
"type": "syn-flood",
"args": {
"host": "localhost",
"port": 80,
"payload_len": 1000,
"flood_type": "random"
}
},
{
"type": "dns-blast",
"args": {
"target_server_ip": "10.8.0.1",
"target_server_port": 53,
"protocol": "udp",
"seed_domains": ["yahoo.com"],
"parallel_queries": 3,
"interval_ms": 100
}
},
{
"type": "slow-loris",
"args": {
"path": "https://localhost:9090/inc2/common/js/doo/modules/searchSite/u.php"
}
},
{
"type": "packetgen",
"args": {
"host": "{{ random_ip }}",
"port": "{{ random_port }}",
"packet": {
"payload": "test:blah",
"ethernet": {
"src_mac": "{{ random_mac_addr }}",
"dst_mac": "{{ random_mac_addr }}"
},
"ip": {
"src_ip": "{{ local_ip }}",
"dst_ip": "{{ random_ip }}"
},
"tcp": {
"src_port": "{{ random_port }}",
"dst_port": "{{ random_port }}",
"flags": {
"syn": true
}
},
"udp": {
"src_port": "{{ random_port }}",
"dst_port": "{{ random_port }}"
}
}
}
}
]
}