add root check

This commit is contained in:
Heiko Eißfeldt 2019-07-19 11:08:23 +02:00
parent 5b2cb426be
commit 13b8bc1a89

View File

@ -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