forked from bnagy/afl-launch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
150 lines (133 loc) · 4.09 KB
/
main.go
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package main
import (
"crypto/rand"
"flag"
"io"
"log"
"os"
"os/exec"
"path"
"regexp"
"strconv"
"strings"
"time"
)
const MAXFUZZERS = 256
const AFLNAME = "afl-fuzz"
var (
flagNoMaster = flag.Bool("no-master", false, "Launch all instances with -S")
flagNum = flag.Int("n", 1, "Number of instances to launch")
flagName = flag.String("name", "", "Base name for instances. Fuzzers will work in <output>/<BASE>-[M|S]<N>")
flagTimeout = flag.String("t", "", "afl-fuzz -t option (timeout)") // afl -t option supports a + suffix
flagMem = flag.String("m", "", "afl-fuzz -m option (memory limit)")
flagInput = flag.String("i", "", "afl-fuzz -i option (input location)")
flagExtras = flag.String("x", "", "afl-fuzz -x option (extras location)")
flagOutput = flag.String("o", "", "afl-fuzz -o option (output location)")
flagFile = flag.String("f", "", "Filename template (substituted and passed via -f)")
flagXXX = flag.Bool("XXX", false, "[HACK] substitute XXX in the target args with an 8 char random string [HACK]")
subRegex = regexp.MustCompile("XXX")
)
func randomName(n int) (result string) {
buf := make([]byte, n)
_, err := io.ReadFull(rand.Reader, buf)
if err != nil {
panic(err)
}
for _, b := range buf {
result += string(b%26 + 0x61)
}
return
}
func spawn(fuzzerName string, args []string) {
// if the user wants to use a special location for the testfiles ( like a
// ramdisk ) then they can provide any filename /path/to/whatever.xxx and
// we'll sub out 'whatever' for the name of this fuzzer and keep the base
// and the extension.
if len(*flagFile) > 0 {
base, _ := path.Split(*flagFile)
ext := path.Ext(*flagFile)
args = append(args, "-f", path.Join(base, fuzzerName+ext))
}
// Create a logfile for afl's stdout. Truncates any existing logfile.
fuzzerDir := path.Join(*flagOutput, fuzzerName)
err := os.MkdirAll(fuzzerDir, 0777)
if err != nil {
log.Fatalf(err.Error())
}
fd, err := os.Create(path.Join(fuzzerDir, "afl-launch.log"))
if err != nil {
log.Fatalf(err.Error())
}
defer fd.Close()
args = append(args, "--")
if *flagXXX {
progArgs := make([]string, len(flag.Args()))
copy(progArgs, flag.Args())
for i, elem := range progArgs {
if subRegex.MatchString(elem) {
progArgs[i] = subRegex.ReplaceAllString(elem, randomName(8))
}
}
args = append(args, progArgs...)
} else {
args = append(args, flag.Args()...)
}
cmd := exec.Command(AFLNAME, args...)
cmd.Stdout = fd
err = cmd.Start()
if err != nil {
// If this fails to start it will be OS issues like no swap or rlimit
// or something, so it's not something we can handle gracefully. It's
// NOT the same as the afl-fuzz process exiting because the args are
// incorrect.
log.Fatalf(err.Error())
}
cmd.Process.Release()
log.Printf("%s %s\n", AFLNAME, strings.Join(args, " "))
}
func main() {
flag.Parse()
if len(flag.Args()) < 2 {
log.Fatalf("no command to fuzz, eg: targetname @@")
}
// can we find afl?
_, err := exec.LookPath(AFLNAME)
if err != nil {
log.Fatalf("couldn't find %s in $PATH", AFLNAME)
}
// sanity for n
if *flagNum > MAXFUZZERS {
log.Fatalf("too many fuzzers: %d", *flagNum)
}
// sanity for name
if len(*flagName) > 32 {
log.Fatalf("base name too long (%d), must be <= 32", len(*flagName))
}
// collect the proxy args for afl-fuzz
baseArgs := []string{}
for _, v := range []string{"t", "m", "i", "x", "o"} {
f := flag.Lookup(v)
if f != nil && f.Value.String() != f.DefValue {
baseArgs = append(baseArgs, "-"+v, f.Value.String())
}
}
baseName := *flagName
if len(baseName) == 0 {
baseName = randomName(5)
}
// first instance is a master unless indicated otherwise
if *flagNoMaster {
name := baseName + "-" + "S" + "0"
spawn(name, append(baseArgs, "-S", name))
} else {
name := baseName + "-" + "M" + "0"
spawn(name, append(baseArgs, "-M", name))
}
// launch the rest
for i := 1; i < *flagNum; i++ {
// To avoid multiple AFL instances binding to the same CPU, we wait a bit
time.Sleep(250 * time.Millisecond)
name := baseName + "-" + "S" + strconv.Itoa(i)
spawn(name, append(baseArgs, "-S", name))
}
}