Commit 6df376e6 by Alexander Popov

Add a comment about 'kernel.modules_disabled'

parent f37cd60e
......@@ -580,7 +580,6 @@ def normalize_cmdline_options(option, value):
# TODO: draft of security hardening sysctls:
# what about bpf_jit_enable?
# vm.mmap_min_addr has a good value
# kernel.modules_disabled=1
# nosmt sysfs control file
# vm.mmap_rnd_bits=max (?)
# kernel.sysrq=0
......@@ -609,6 +608,8 @@ def add_sysctl_checks(l, arch):
# At first, it disabled unprivileged userfaultfd,
# and since v5.11 it enables unprivileged userfaultfd for user-mode only.
# l += [SysctlCheck('cut_attack_surface', 'clipos', 'kernel.modules_disabled', '1')] # radical, but may be useful in some cases
l += [SysctlCheck('harden_userspace', 'kspp', 'fs.protected_symlinks', '1')]
l += [SysctlCheck('harden_userspace', 'kspp', 'fs.protected_hardlinks', '1')]
l += [SysctlCheck('harden_userspace', 'kspp', 'fs.protected_fifos', '2')]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment