From: Alexander Popov Date: Sun, 8 Mar 2020 21:47:18 +0000 (+0300) Subject: Add CONFIG_INTEGRITY for userspace hardening X-Git-Tag: v0.5.5~19 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=071e301cbbf7895c379f86aef790506c399ada3b;p=kconfig-hardened-check.git Add CONFIG_INTEGRITY for userspace hardening --- diff --git a/kconfig-hardened-check.py b/kconfig-hardened-check.py index 55e46a3..dd7b30e 100755 --- a/kconfig-hardened-check.py +++ b/kconfig-hardened-check.py @@ -434,6 +434,7 @@ def construct_checklist(checklist, arch): if arch == 'X86_32': checklist.append(OptCheck('MODIFY_LDT_SYSCALL', 'is not set', 'my', 'cut_attack_surface')) + checklist.append(OptCheck('INTEGRITY', 'y', 'defconfig', 'userspace_hardening')) if arch == 'ARM64': checklist.append(OptCheck('ARM64_PTR_AUTH', 'y', 'defconfig', 'userspace_hardening')) if arch == 'X86_64' or arch == 'ARM64':