Sha256: dbb0a4b63929caa33a34db80e15a6a32a0dbbbbad97a817ec7fcd145d116cde4
Contents?: true
Size: 544 Bytes
Versions: 1
Compression:
Stored size: 544 Bytes
Contents
#!/bin/bash set -e SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )" if [ -d "$SCRIPTPATH/out/latest" ] then echo "out/latest directory already exists!" echo "Delete it to perform another fuzzer run." exit 1 fi # gitignored, so a fresh clone won't have this mkdir -p "$SCRIPTPATH/out" AFL_NO_FORKSRV=1 AFL_SKIP_BIN_CHECK=1 \ bundle exec afl-fuzz \ -i "$SCRIPTPATH/cases" \ -o "$SCRIPTPATH/out/latest" \ -m 5000 \ -x "$SCRIPTPATH/ruby.dict" \ -- ruby bin/houndstooth.rb --instrument -f @@
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
houndstooth-0.1.0 | fuzz/run |