From e18de5fac35b7cf38bdb4030df0383e814dfcbf4 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 18 Mar 2018 15:44:23 -0400 Subject: [PATCH] expand the vorbis initial corpus (#1254) --- projects/vorbis/Dockerfile | 4 ++-- projects/vorbis/build.sh | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/projects/vorbis/Dockerfile b/projects/vorbis/Dockerfile index 778931a8b..45ebb5e98 100644 --- a/projects/vorbis/Dockerfile +++ b/projects/vorbis/Dockerfile @@ -16,10 +16,10 @@ FROM gcr.io/oss-fuzz-base/base-builder MAINTAINER paul.l.kehrer@mail.com -RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config +RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config wget RUN git clone https://git.xiph.org/ogg.git RUN git clone https://git.xiph.org/vorbis.git ADD decode_fuzzer.cc $SRC/ -ADD https://upload.wikimedia.org/wikipedia/commons/f/f9/Beep_example.ogg $SRC/sample.ogg +RUN wget --cut-dirs 3 --recursive --level=1 -A ".ogg" https://people.xiph.org/~xiphmont/test-vectors/vorbis/ WORKDIR vorbis COPY build.sh $SRC/ diff --git a/projects/vorbis/build.sh b/projects/vorbis/build.sh index b0a49dca3..52cd376ca 100755 --- a/projects/vorbis/build.sh +++ b/projects/vorbis/build.sh @@ -17,8 +17,7 @@ cd $SRC -mkdir decode_corpus -mv sample.ogg decode_corpus/ +mv people.xiph.org decode_corpus zip -r "$OUT/decode_fuzzer_seed_corpus.zip" decode_corpus/ cd $SRC/ogg