diff options
author | van Hauser <vh@thc.org> | 2023-09-27 16:33:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 16:33:43 +0200 |
commit | 1c582b6aeec034b2c0ef650abd35352df7d78fa7 (patch) | |
tree | 78bb5aa795a50932132fa778f904e4ec297483c8 /afl-persistent-config | |
parent | dee76993812fa9b5d8c1b75126129887a10befae (diff) | |
parent | 5f7c3a1ee0d6f20e42a207a7e75e0f19e726a0f5 (diff) | |
download | afl++-1c582b6aeec034b2c0ef650abd35352df7d78fa7.tar.gz |
Merge pull request #1874 from AFLplusplus/dev
push to stable
Diffstat (limited to 'afl-persistent-config')
-rwxr-xr-x | afl-persistent-config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/afl-persistent-config b/afl-persistent-config index 6d96c196..3abcb866 100755 --- a/afl-persistent-config +++ b/afl-persistent-config @@ -98,9 +98,9 @@ if [[ "$PLATFORM" = "Linux" ]] ; then echo "Checks passed." test -d /etc/sysctl.d || echo Error: /etc/sysctl.d directory not found, cannot install shmem config - test -d /etc/sysctl.d -a '!' -e /etc/sysctl.d/99-fuzzing && { - echo "Installing /etc/sysctl.d/99-fuzzing" - cat << EOF > /etc/sysctl.d/99-fuzzing + test -d /etc/sysctl.d -a '!' -e /etc/sysctl.d/99-fuzzing.conf && { + echo "Installing /etc/sysctl.d/99-fuzzing.conf" + cat << EOF > /etc/sysctl.d/99-fuzzing.conf kernel.core_uses_pid=0 kernel.core_pattern=core kernel.randomize_va_space=0 |