about summary refs log tree commit diff
path: root/docs/fuzzing_in_depth.md
diff options
context:
space:
mode:
authorMax Ammann <max@maxammann.org>2024-02-14 15:55:32 +0000
committerMax Ammann <max@maxammann.org>2024-02-14 15:55:32 +0000
commit1b84448be3534ed9d15a945560b16626f48113d5 (patch)
tree64bc474bee5fdbf944ae5c7e2384905c63a5b1e1 /docs/fuzzing_in_depth.md
parent61ceef64b10cc8da0bba79c3f97ae223d2095fc5 (diff)
downloadafl++-1b84448be3534ed9d15a945560b16626f48113d5.tar.gz
afl-persistent-config: Use GRUB_CMDLINE_LINUX instead of GRUB_CMDLINE_LINUX_DEFAULT.
The latter is often overwritten in images used in cloud setups. For example DigitalOcean sets GRUB_CMDLINE_LINUX_DEFAULT="console=tty1 console=ttyS0" in /etc/default/grub.d/
Diffstat (limited to 'docs/fuzzing_in_depth.md')
-rw-r--r--docs/fuzzing_in_depth.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/fuzzing_in_depth.md b/docs/fuzzing_in_depth.md
index 6a217641..5f2bcebe 100644
--- a/docs/fuzzing_in_depth.md
+++ b/docs/fuzzing_in_depth.md
@@ -791,7 +791,7 @@ or honggfuzz.
 * If you do not use shmem persistent mode, use `AFL_TMPDIR` to point the input
   file on a tempfs location, see [env_variables.md](env_variables.md).
 * Linux: Improve kernel performance: modify `/etc/default/grub`, set
-  `GRUB_CMDLINE_LINUX_DEFAULT="ibpb=off ibrs=off kpti=off l1tf=off mds=off
+  `GRUB_CMDLINE_LINUX="ibpb=off ibrs=off kpti=off l1tf=off mds=off
   mitigations=off no_stf_barrier noibpb noibrs nopcid nopti
   nospec_store_bypass_disable nospectre_v1 nospectre_v2 pcid=off pti=off
   spec_store_bypass_disable=off spectre_v2=off stf_barrier=off"`; then