da11acd8c5
Signed-off-by: Miklos Vajna <vmiklos@collabora.com> Change-Id: I51033bc4d3f97f5ae93abce1b5f19ef6a8b296d8 |
||
---|---|---|
.. | ||
admin-data | ||
data | ||
httpheader-data | ||
httpstatus-data | ||
Admin.cpp | ||
ClientSession.cpp | ||
HttpHeader.cpp | ||
HttpStatus.cpp | ||
README |
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 `loolwsd` binary. Run the fuzzers like this: - Admin: ---- ./admin_fuzzer -max_len=16384 fuzzer/admin-data/ ---- - ClientSession: ---- ./clientsession_fuzzer -max_len=16384 fuzzer/data/ ---- - HttpHeader (less useful, found no problems so far): ---- ./httpheader_fuzzer -max_len=16384 fuzzer/httpheader-data/ ---- - HttpStatus: ---- ./httpstatus_fuzzer -max_len=16384 fuzzer/httpstatus-data/ ----