forked from CollaboraOnline/online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
34 lines (24 loc) · 744 Bytes
/
README
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
These fuzzers are meant to be built and executed inside lode.git's sanitizers
environment (currently enables both asan and ubsan).
online.git can be built the usual way, just the additional `--enable-fuzzers`
flag is needed to build the fuzzers. It is useful to do this in a separate
build tree, since the fuzzers config doesn't produce a `coolwsd` binary.
Run the fuzzers like this:
- Admin:
----
./admin_fuzzer -max_len=16384 fuzzer/admin-data/
----
- ClientSession:
----
./clientsession_fuzzer -max_len=16384 fuzzer/data/
----
- HttpResponse:
----
./httpresponse_fuzzer -max_len=16384 fuzzer/httpresponse-data/
----
- HttpEcho:
----
./httpecho_fuzzer -max_len=16384 fuzzer/httpecho-data/
OR, better:
./fuzzer/httpecho-fuzz.sh
----