aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xafl-system-config4
1 files changed, 4 insertions, 0 deletions
diff --git a/afl-system-config b/afl-system-config
index fa24d473..97f95c09 100755
--- a/afl-system-config
+++ b/afl-system-config
@@ -1,5 +1,9 @@
#!/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\)
+ exit 1
+fi
sysctl -w kernel.core_pattern=core
sysctl -w kernel.randomize_va_space=0
sysctl -w kernel.sched_child_runs_first=1