forked from arriven/db1000n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testconfig.json
90 lines (90 loc) · 2.08 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
{
"jobs": [
{
"type": "http",
"filter": "{{ eq (mod . 2) 0 }}",
"args": {
"method": "GET",
"path": "http://localhost:8080/test?queryparam=test&s={{ random_uuid }}",
"headers": {
"Authorization": "wtf"
},
"client": {
"proxy_urls": "{{ join 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": "dns-blast",
"args": {
"root_domain": "example.com",
"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": "{{ resolve_host \"localhost\" }}",
"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": "{{ resolve_host \"localhost\" }}"
},
"tcp": {
"src_port": "{{ random_port }}",
"dst_port": "{{ random_port }}",
"flags": {
"syn": true
}
},
"udp": {
"src_port": "{{ random_port }}",
"dst_port": "{{ random_port }}"
}
}
}
}
]
}