12 lines
370 B
Bash
12 lines
370 B
Bash
#/bin/sh
|
|
#change to script directory
|
|
cd `dirname $0`
|
|
ls fuzz_emu*.c | sed 's/.c//' | while read target
|
|
do
|
|
#download public corpus
|
|
wget "https://storage.googleapis.com/unicorn-backup.clusterfuzz-external.appspot.com/corpus/libFuzzer/unicorn_$target/public.zip"
|
|
unzip -q public.zip -d corpus_$target
|
|
#run target on corpus
|
|
./$target corpus_$target
|
|
done
|