forked from piano-man/DPIFuzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
60 lines (60 loc) · 1.99 KB
/
launch.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
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Fuzzer Runner",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/bin/fuzzer/fuzzer_runner.go",
"args": ["-host", "${input:host}", "-generator", "${input:generator}", "-debug=true", "-alpn", "hq", "-fuzz", "1", "-source", "${input:source}"]
},
{
"name": "Differential Fuzzer",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/bin/fuzzer/modular_differential_fuzzer.go",
"args": ["-hosts", "hosts.txt", "-max-instances", "2", "-iterations", "${input:iterations}", "-parallel", "true", "-generator", "${input:generator}", "-debug=true", "-fuzz", "1"]
}
],
"inputs": [
{
"id": "host",
"type": "pickString",
"description": "QUIC host",
"options": [
"172.29.176.1:4433",
"172.29.176.1:4434",
"172.29.176.1:4435"
],
"default": "172.29.176.1:4433"
},
{
"id": "generator",
"type": "pickString",
"description": "generator",
"options": [
"stream_reassembly",
"flow_control_stream_reassembly",
"overlapping_offset"
],
"default": "overlapping_offset"
},
{
"id": "iterations",
"type": "promptString",
"description": "iterations",
"default": "20"
},
{
"id": "source",
"type": "promptString",
"description": "seed",
"default": ""
}
]
}