From: Alexander Popov Date: Mon, 19 Aug 2024 14:34:02 +0000 (+0300) Subject: Add the `TEST_DEBUG_VIRTUAL` kconfig check X-Git-Tag: v0.6.10~19^2 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=9b6694b28562369977fb925753cf5c6c6d50564a;p=kconfig-hardened-check.git Add the `TEST_DEBUG_VIRTUAL` kconfig check --- diff --git a/kernel_hardening_checker/checks.py b/kernel_hardening_checker/checks.py index 38655cf..6fcb07d 100755 --- a/kernel_hardening_checker/checks.py +++ b/kernel_hardening_checker/checks.py @@ -398,6 +398,7 @@ def add_kconfig_checks(l: List[ChecklistObjType], arch: str) -> None: l += [KconfigCheck('cut_attack_surface', 'grsec', 'PREEMPTIRQ_TRACEPOINTS', 'is not set')] l += [KconfigCheck('cut_attack_surface', 'grsec', 'ENABLE_DEFAULT_TRACERS', 'is not set')] l += [KconfigCheck('cut_attack_surface', 'grsec', 'PROVE_LOCKING', 'is not set')] + l += [KconfigCheck('cut_attack_surface', 'grsec', 'TEST_DEBUG_VIRTUAL', 'is not set')] l += [KconfigCheck('cut_attack_surface', 'grsec', 'MPTCP', 'is not set')] l += [KconfigCheck('cut_attack_surface', 'grsec', 'TLS', 'is not set')] l += [KconfigCheck('cut_attack_surface', 'grsec', 'TIPC', 'is not set')]