diff options
Diffstat (limited to 'afl-fuzz-dyninst.sh')
-rwxr-xr-x | afl-fuzz-dyninst.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/afl-fuzz-dyninst.sh b/afl-fuzz-dyninst.sh index b5370cb..eceb678 100755 --- a/afl-fuzz-dyninst.sh +++ b/afl-fuzz-dyninst.sh @@ -1,6 +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 ; } -sysctl -w kernel.core_pattern="core" > /dev/null +sysctl -w kernel.core_pattern=core > /dev/null sysctl -w kernel.randomize_va_space=0 > /dev/null echo performance | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor > /dev/null export AFL_SKIP_BIN_CHECK=1 |