From 6fa95008bc6872802917cb2f8ddaa44b1ace474d Mon Sep 17 00:00:00 2001 From: van Hauser Date: Wed, 24 Jul 2019 12:55:37 +0200 Subject: fix root check --- afl-system-config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'afl-system-config') diff --git a/afl-system-config b/afl-system-config index 97f95c09..366762ef 100755 --- a/afl-system-config +++ b/afl-system-config @@ -1,7 +1,7 @@ #!/bin/sh echo This reconfigures the system to have a better fuzzing performance -if [[ $EUID -ne 0 ]] || ! [ `id -u` = 0 ]; then - echo if you are root \(which you are currently not\) +if [ '!' "$EUID" = 0 ] && [ '!' `id -u` = 0 ] ; then + echo Error you need to be root to run this exit 1 fi sysctl -w kernel.core_pattern=core -- cgit 1.4.1