mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-10-01 08:25:45 -04:00
Add more kernel hardening parameters
This commit is contained in:
parent
5269cfeef9
commit
2178fb37a8
@ -9,3 +9,12 @@ 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"
|
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX mce=0"
|
||||||
|
|
||||||
|
# Enables Kernel Page Table Isolation which mitigates Meltdown and improves KASLR.
|
||||||
|
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX pti=on"
|
||||||
|
|
||||||
|
# Disables smt which can be used to exploit the MDS vulnerability.
|
||||||
|
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX nosmt"
|
||||||
|
|
||||||
|
# Enables all mitigations for the MDS vulnerability.
|
||||||
|
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX mds=full"
|
||||||
|
Loading…
Reference in New Issue
Block a user