Add a comment that 'user.max_user_namespaces=0' may break the upower daemon
authorAlexander Popov <alex.popov@linux.com>
Sat, 30 Mar 2024 11:36:34 +0000 (14:36 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sat, 30 Mar 2024 11:36:34 +0000 (14:36 +0300)
kernel_hardening_checker/checks.py

index 10c3482bf0265b592ff4d43fcedeaee8f23d592a..5aff75e221f792e5a6e9b2e6910025b7626eae95 100644 (file)
@@ -649,7 +649,7 @@ def add_sysctl_checks(l, _arch):
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.dmesg_restrict', '1')]
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.perf_event_paranoid', '3')] # with a custom patch, see https://lwn.net/Articles/696216/
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.kexec_load_disabled', '1')]
-    l += [SysctlCheck('cut_attack_surface', 'kspp', 'user.max_user_namespaces', '0')]
+    l += [SysctlCheck('cut_attack_surface', 'kspp', 'user.max_user_namespaces', '0')] # may break the upower daemon in Ubuntu
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'dev.tty.ldisc_autoload', '0')]
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.unprivileged_bpf_disabled', '1')]
     l += [SysctlCheck('cut_attack_surface', 'kspp', 'kernel.kptr_restrict', '2')]