mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 01:31:37 +00:00
add root check
This commit is contained in:
parent
5b2cb426be
commit
13b8bc1a89
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user