mirror of
https://github.com/Kicksecure/security-misc.git
synced 2024-10-01 08:25:45 -04:00
26 lines
847 B
INI
26 lines
847 B
INI
## Copyright (C) 2023 - 2024 ENCRYPTED SUPPORT LP <adrelanos@whonix.org>
|
|
## See the file COPYING for copying conditions.
|
|
|
|
## Remount Secure provides enhanced security via mount options:
|
|
## https://www.kicksecure.com/wiki/Security-misc#Remount_Secure
|
|
|
|
## Option A (No Security):
|
|
## Disable Remount Secure.
|
|
##
|
|
#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=0"
|
|
|
|
## Option B (Low Security):
|
|
## Re-mount with nodev and nosuid only.
|
|
##
|
|
#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=1"
|
|
|
|
## Option C (Medium Security):
|
|
## Re-mount with nodev, nosuid, and noexec for most mount points, excluding /home.
|
|
##
|
|
#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=2"
|
|
|
|
## Option D (Highest Security):
|
|
## Re-mount with nodev, nosuid, and noexec for all mount points including /home.
|
|
##
|
|
#GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX remountsecure=3"
|