diff options
author | Caolán McNamara <caolanm@redhat.com> | 2023-04-26 11:00:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2023-04-26 17:42:01 +0200 |
commit | e2279c73456cd54f0cc8290bb562e0226fa174dd (patch) | |
tree | 53ed03a18f227bb3b015acc986cb9d890709a14e /bin | |
parent | 33775c5d052e52ca60e3bc75d57981191d7b8c3a (diff) |
upgrade to more recent fuzzing dicts and use some additional ones
that look a good fit for the formats we're already fuzzing
Change-Id: Ie635d17d829858c0cb10f71ea936f8dc131db811
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151052
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/oss-fuzz-setup.sh | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/bin/oss-fuzz-setup.sh b/bin/oss-fuzz-setup.sh index c49b95dede3c..9268e39c4b06 100755 --- a/bin/oss-fuzz-setup.sh +++ b/bin/oss-fuzz-setup.sh @@ -78,12 +78,19 @@ cd $SRC #fuzzing dictionaries curl --no-progress-meter -S \ - -C - -O https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/gif.dict \ - -C - -O https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/jpeg.dict \ - -C - -O https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/png.dict \ - -C - -O https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/tiff.dict \ - -C - -O https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/xml.dict \ - -C - -O https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/html_tags.dict + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/gif.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/jpeg.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/png.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/tiff.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/xml.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/html.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/svg.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/bmp.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/otf.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/psd.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/rtf.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/webp.dict \ + -C - -O https://raw.githubusercontent.com/google/fuzzing/master/dictionaries/zip.dict #fuzzing corpuses #afl jpeg, gif, bmp, png, webp curl --no-progress-meter -S -C - -O https://lcamtuf.coredump.cx/afl/demo/afl_testcases.tgz |