From: Alexander Popov Date: Mon, 19 Aug 2024 14:30:31 +0000 (+0300) Subject: Remove the `PAGE_OWNER` kconfig check X-Git-Tag: v0.6.10~19^2~2 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=e35a22de0634a8866491520f3bf947b7ffa20788;p=kconfig-hardened-check.git Remove the `PAGE_OWNER` kconfig check It is not relevant any more. --- diff --git a/kernel_hardening_checker/checks.py b/kernel_hardening_checker/checks.py index 3ff699d..dab505b 100755 --- a/kernel_hardening_checker/checks.py +++ b/kernel_hardening_checker/checks.py @@ -355,7 +355,6 @@ def add_kconfig_checks(l: List[ChecklistObjType], arch: str) -> None: # 'cut_attack_surface', 'grsec' l += [KconfigCheck('cut_attack_surface', 'grsec', 'ZSMALLOC_STAT', 'is not set')] - l += [KconfigCheck('cut_attack_surface', 'grsec', 'PAGE_OWNER', 'is not set')] l += [KconfigCheck('cut_attack_surface', 'grsec', 'DEBUG_KMEMLEAK', 'is not set')] l += [KconfigCheck('cut_attack_surface', 'grsec', 'BINFMT_AOUT', 'is not set')] l += [KconfigCheck('cut_attack_surface', 'grsec', 'KPROBE_EVENTS', 'is not set')]