remove trailing spaces

This commit is contained in:
Patrick Schleizer 2019-05-06 05:51:14 -04:00
parent 83e12f8e89
commit f917c27a19
No known key found for this signature in database
GPG Key ID: CB8D50BB77BB3C48
2 changed files with 5 additions and 5 deletions

View File

@ -1,11 +1,11 @@
# Disables the merging of slabs of similar sizes. Sometimes a slab can be used in a vulnerable way which an attacker can exploit.
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX slab_nomerge"
# Enables sanity checks (F), redzoning (Z) and poisoning (P).
# Enables sanity checks (F), redzoning (Z) and poisoning (P).
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX slab_debug=FZP"
# Wipes free memory so it can't leak in various ways and prevents some use-after-free vulnerabilites.
# Wipes free memory so it can't leak in various ways and prevents some use-after-free vulnerabilites.
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX page_poison=1"
# Makes the kernel panic on uncorrectable errors in ECC memory that an attacker could exploit.
# Makes the kernel panic on uncorrectable errors in ECC memory that an attacker could exploit.
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX mce=0"

View File

@ -1,2 +1,2 @@
# Hides kernel symbols in /proc/kallsyms
kernel.kptr_restrict=2
# Hides kernel symbols in /proc/kallsyms
kernel.kptr_restrict=2