Skip to content
Snippets Groups Projects
Commit 8c1bb620 authored by Sergey Bronnikov's avatar Sergey Bronnikov Committed by Kirill Yukhin
Browse files

test: add corpus to be used with fuzzers

Fuzzing tools uses evolutionary algorithms. Supplying seed corpus
consisting of good sample inputs is one of the best ways to improve
fuzz target’s coverage. Patch adds a corpuses that can be used with
existed fuzzers. The name of each file in the corpus is the sha1
checksum of its contents.

Corpus with http headers was added from [1] and [2].

1. https://google.github.io/oss-fuzz/getting-started/new-project-guide/
2. https://en.wikipedia.org/wiki/List_of_HTTP_header_fields
3. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers

The libFuzzer allow to minimize corpus with help of `-merge` flag:
when 1 is passed, any corpus inputs from the 2nd, 3rd etc. corpus
directories that trigger new code coverage will be merged into the
first corpus directory, when 0 is passed an existed corpus will be
minimized.

All provided corpuses in a patch were minimized.

Part of #1809
parent 2ad7caca
No related branches found
No related tags found
No related merge requests found
Showing
with 37 additions and 0 deletions
"a,b,c\n"
"1,\"\",\"\"\n"
"2,3,4\n"
"first,last,address,city,zip\n"
"John,Doe,120 any st.,\"Anytown, WW\",08123\n"
"a,b\n"
"1,\"ha\n"
"\"\"ha\"\"\n"
"ha\"\n"
"3,4\n"
"
\ No newline at end of file
",,\n"
"none,none,0\n"
" a,b,c\n"
"1,2,3\n"
"4,5,а нет ли ошибок?\n"
"key,val\n"
"1,\"{\"\"type\"\": \"\"Point\"\", \"\"coordinates\"\": [102.0, 0.5]}\"\n"
"a,b\n"
"1,\"ha \"\"ha\"\" ha\"\n"
"3,4\n"
"abc", "with,comma", "\"in quotes\"", "1 \" quote"
"a,b,c\n"
"1,2,3\n"
"\"Once upon \n"
"a time\",5,6\n"
"7,8,9\n"
"\n \nabc\nc\"\",\"d\",de\n\nk";
("123 , 5 , 92 , 0, 0\n"
"1, 12 34, 56, \"quote , \", 66\nok");
" www , \"aa\"a , \"tt \" \n"
"1,2,3\r\n", "4,5,6", "", ""
"abc\tlonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglonglong\t0\n"
"123,456,abcac,\'multiword field 4\'\n"
"123\t456\t\n" "0\t\t\n";
",,"
"\ne\n\n \n\" \"\n\"quote isn't closed, sorry\n \noh";
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment