diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-01-31 10:13:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-01-31 11:46:49 +0100 |
commit | afaaf8cdb0f00b068c7eb20c6de261a23b5b35dd (patch) | |
tree | a110e0dd875f79a067a2b6b404b6a66ba8d0a220 /bin | |
parent | 81a3d9b4bf471158de00d2fbb63fca420da94a38 (diff) |
extract an initial webpfuzzer_seed_corpus.zip from the afl corpus
Change-Id: Iae44bf9113cf78e2f7dcf20a4f987bda0614b2d2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129214
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 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/oss-fuzz-setup.sh b/bin/oss-fuzz-setup.sh index 5566d845f66c..f69c6b1377a3 100755 --- a/bin/oss-fuzz-setup.sh +++ b/bin/oss-fuzz-setup.sh @@ -83,12 +83,14 @@ curl --no-progress-meter -S \ -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 #fuzzing corpuses +#afl jpeg, gif, bmp, png, webp curl --no-progress-meter -S -C - -O https://lcamtuf.coredump.cx/afl/demo/afl_testcases.tgz mkdir -p afl-testcases && cd afl-testcases/ && tar xf $SRC/afl_testcases.tgz && cd .. && \ zip -q $SRC/jpgfuzzer_seed_corpus.zip afl-testcases/jpeg*/full/images/* && \ zip -q $SRC/giffuzzer_seed_corpus.zip afl-testcases/gif*/full/images/* && \ zip -q $SRC/bmpfuzzer_seed_corpus.zip afl-testcases/bmp*/full/images/* && \ - zip -q $SRC/pngfuzzer_seed_corpus.zip afl-testcases/png*/full/images/* + zip -q $SRC/pngfuzzer_seed_corpus.zip afl-testcases/png*/full/images/* && \ + zip -q $SRC/webpfuzzer_seed_corpus.zip afl-testcases/webp*/full/images/* # using github's svn view to use svn export as a hack to just export part of the git repo svn export --force -q https://github.com/khaledhosny/ots/trunk/tests/fonts $SRC/sample-sft-fonts/ots svn export --force -q https://github.com/unicode-org/text-rendering-tests/trunk/fonts/ $SRC/sample-sft-fonts/unicode-org |