From ceed90922a9723a857afcd968aea4147cbbc70a1 Mon Sep 17 00:00:00 2001 From: Denis Kasak Date: Thu, 1 Jul 2021 13:49:50 +0200 Subject: [PATCH] fuzzing: Add readme. --- fuzzing/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 fuzzing/README.md diff --git a/fuzzing/README.md b/fuzzing/README.md new file mode 100644 index 0000000..79a95ec --- /dev/null +++ b/fuzzing/README.md @@ -0,0 +1,10 @@ +# Directory structure + +- `fuzzers/`: Sources for the fuzzing harnesses. +- `corpora/`: Contains the fuzzing corpora and assorted tools. The corpora are + filed under a directory with the same name as the fuzzing harness. Each of + those directories also contains the following: + + - `in/`: Contains the actual corpus test cases. + - `tools/`: Any tools useful for that particular harness. A good example + would be a binary which generates seed test cases.