Check COREDUMP (recommended by Clip OS)
authorAlexander Popov <alex.popov@linux.com>
Sun, 9 Oct 2022 17:49:58 +0000 (20:49 +0300)
committerAlexander Popov <alex.popov@linux.com>
Sun, 9 Oct 2022 17:49:58 +0000 (20:49 +0300)
Disabling COREDUMP is needed for cutting userspace attack surface.

kconfig_hardened_check/__init__.py

index 9ae247482b82ce23de85772487faaa33606e55bc..3412a1a752033617233ecb3cd1909aafe5f1e508 100644 (file)
@@ -641,6 +641,7 @@ def add_kconfig_checks(l, arch):
     l += [KconfigCheck('cut_attack_surface', 'clipos', 'X86_IOPL_IOPERM', 'is not set')] # refers to LOCKDOWN
     l += [KconfigCheck('cut_attack_surface', 'clipos', 'ACPI_TABLE_UPGRADE', 'is not set')] # refers to LOCKDOWN
     l += [KconfigCheck('cut_attack_surface', 'clipos', 'EFI_CUSTOM_SSDT_OVERLAYS', 'is not set')]
+    l += [KconfigCheck('cut_attack_surface', 'clipos', 'COREDUMP', 'is not set')] # cut userspace attack surface
     l += [AND(KconfigCheck('cut_attack_surface', 'clipos', 'LDISC_AUTOLOAD', 'is not set'),
               KconfigCheck('cut_attack_surface', 'clipos', 'LDISC_AUTOLOAD'))] # option presence check
     if arch in ('X86_64', 'X86_32'):