updates to OSS-Fuzz integration

adapt more fuzz targets from zlib,
add zip fuzzer, zip dictionary.
update uncompress_fuzzer to seed the buffer length separately.
This commit is contained in:
Randy
2020-11-24 16:51:30 +01:00
parent cd65995953
commit b485d01faf
10 changed files with 466 additions and 7 deletions

9
tests/zip.dict Normal file
View File

@@ -0,0 +1,9 @@
# Fuzzing dictionary for .zip files
header_lfh="\x50\x4b\x03\x04"
header_cd="\x50\x4b\x01\x02"
header_eocd="\x50\x4b\x05\x06"
header_eocd64="\x50\x4b\x06\x06"
data_descriptor="\x50\x4b\x07\x08"
extra_data_sig="\x50\x4b\x06\x08"
digital_sig="\x50\x4b\x05\x05"