Mercurial > dropbear-fuzzcorpus
view fetch.sh @ 25:0ef1e51e583f default tip
Add some more pubkey options to the dict
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 27 Oct 2022 19:09:07 +0800 |
parents | 4032153b8b7a |
children |
line wrap: on
line source
#!/bin/sh # Fetch new corpus from oss-fuzz and update the repository. Make sure you commit first! # Before running you need to set up gcloud auth set -x set -e FUZZERS=$(make list-fuzz-targets) rm -rf dl mkdir dl for F in $FUZZERS; do gsutil cp gs://dropbear-backup.clusterfuzz-external.appspot.com/corpus/libFuzzer/dropbear_$F/latest.zip dl/$F.zip done # need to use "xargs -n 200" to avoid "argument list too long" for F in $FUZZERS; do # 40 characters is a hash - those filenames came from a previous corpus # we want to keep manually named files which are handcrafted seeds echo $F/???????????????????????????????????????? | xargs -n 200 rm || true # unzip overwrite, quiet (cd $F; unzip -o -q ../dl/$F.zip) done hg addremove $FUZZERS