mirror of
https://github.com/Kicksecure/security-misc.git
synced 2025-07-22 12:50:41 -04:00
Merge remote-tracking branch 'github-kicksecure/master'
This commit is contained in:
commit
36114e29a2
2 changed files with 10 additions and 0 deletions
|
@ -177,6 +177,8 @@ CPU mitigations:
|
|||
|
||||
- Register File Data Sampling (RFDS)
|
||||
|
||||
- Indirect Target Selection (ITS)
|
||||
|
||||
Boot parameters relating to kernel hardening, DMA mitigations, and entropy
|
||||
generation are outlined in the `/etc/default/grub.d/40_kernel_hardening.cfg`
|
||||
configuration file.
|
||||
|
|
|
@ -187,3 +187,11 @@ GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX gather_data_sampling=force"
|
|||
## https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/reg-file-data-sampling.html
|
||||
##
|
||||
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX reg_file_data_sampling=on"
|
||||
|
||||
## Indirect Target Selection (ITS):
|
||||
## Mitigate the vulnerability by not allowing indirect branches in the lower half of the cacheline.
|
||||
## Currently affects Intel CPUs.
|
||||
##
|
||||
## https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/indirect-target-selection.html
|
||||
##
|
||||
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX indirect_target_selection=force"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue