mirror of https://github.com/google/oss-fuzz.git
[skia] Add json dictionary from AFL to skjson (#1498)
This commit is contained in:
parent
cdf81af81c
commit
67fcf72e97
|
@ -167,6 +167,7 @@ cp out/Fuzz/skottie_json $OUT/skottie_json
|
|||
cp ./skottie_json_seed_corpus.zip $OUT/skottie_json_seed_corpus.zip
|
||||
|
||||
cp out/Fuzz/skjson $OUT/skjson
|
||||
cp json.dict $OUT/skjson.dict
|
||||
cp ./skjson_seed_corpus.zip $OUT/skjson_seed_corpus.zip
|
||||
|
||||
# Handle libfuzzer only fuzzers (i.e. those that break afl-fuzz)
|
||||
|
|
|
@ -0,0 +1,52 @@
|
|||
#
|
||||
# AFL dictionary for JSON
|
||||
# -----------------------
|
||||
#
|
||||
# Just the very basics.
|
||||
#
|
||||
# Inspired by a dictionary by Jakub Wilk <jwilk@jwilk.net>
|
||||
#
|
||||
|
||||
"0"
|
||||
",0"
|
||||
":0"
|
||||
"0:"
|
||||
"-1.2e+3"
|
||||
|
||||
"true"
|
||||
"false"
|
||||
"null"
|
||||
|
||||
"\"\""
|
||||
",\"\""
|
||||
":\"\""
|
||||
"\"\":"
|
||||
|
||||
"{}"
|
||||
",{}"
|
||||
":{}"
|
||||
"{\"\":0}"
|
||||
"{{}}"
|
||||
|
||||
"[]"
|
||||
",[]"
|
||||
":[]"
|
||||
"[0]"
|
||||
"[[]]"
|
||||
|
||||
"''"
|
||||
"\\"
|
||||
"\\b"
|
||||
"\\f"
|
||||
"\\n"
|
||||
"\\r"
|
||||
"\\t"
|
||||
"\\u0000"
|
||||
"\\x00"
|
||||
"\\0"
|
||||
"\\uD800\\uDC00"
|
||||
"\\uDBFF\\uDFFF"
|
||||
|
||||
"\"\":0"
|
||||
"//"
|
||||
"/**/"
|
Loading…
Reference in New Issue