diff options
author | van Hauser <vh@thc.org> | 2018-02-24 12:08:20 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2018-02-24 12:08:20 +0100 |
commit | f843c135a7442aaf40381e76439e250ae905be18 (patch) | |
tree | 8123ed783c290d12ed22fca97e13d138d606394f /afl-fuzz.sh | |
parent | 15e935cd25c4fa76210d8f36d480678d364a379e (diff) | |
download | afl-dyninst-f843c135a7442aaf40381e76439e250ae905be18.tar.gz |
added my changes
Diffstat (limited to 'afl-fuzz.sh')
-rwxr-xr-x | afl-fuzz.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/afl-fuzz.sh b/afl-fuzz.sh new file mode 100755 index 0000000..c9986c6 --- /dev/null +++ b/afl-fuzz.sh @@ -0,0 +1,6 @@ +#!/bin/bash +test -z "$1" -o "$1" = "-h" && { echo Syntax: $0 afl-fuzz-options ; echo sets the afl-dyninst environment variables ; exit 1 ; } +export AFL_SKIP_BIN_CHECK=1 +export DYNINSTAPI_RT_LIB=/usr/local/lib/libdyninstAPI_RT.so +#export AFL_PRELOAD=./desock.so +afl-fuzz $* |