projects
/
kconfig-hardened-check.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f305cc9
)
Add the KGDB check
author
Alexander Popov
<alex.popov@linux.com>
Fri, 6 May 2022 15:28:44 +0000
(18:28 +0300)
committer
Alexander Popov
<alex.popov@linux.com>
Fri, 6 May 2022 15:28:44 +0000
(18:28 +0300)
Thanks to @izh1979 for the idea.
kconfig_hardened_check/__init__.py
patch
|
blob
|
history
diff --git
a/kconfig_hardened_check/__init__.py
b/kconfig_hardened_check/__init__.py
index 27cbd21b67dfc88cddfd1a36fa853f344ac30db2..52f505d474d027876e59188a13d08e656f919050 100644
(file)
--- a/
kconfig_hardened_check/__init__.py
+++ b/
kconfig_hardened_check/__init__.py
@@
-631,6
+631,7
@@
def add_kconfig_checks(l, arch):
l += [KconfigCheck('cut_attack_surface', 'my', 'FTRACE', 'is not set')] # refers to LOCKDOWN
l += [KconfigCheck('cut_attack_surface', 'my', 'VIDEO_VIVID', 'is not set')]
l += [KconfigCheck('cut_attack_surface', 'my', 'INPUT_EVBUG', 'is not set')] # Can be used as a keylogger
+ l += [KconfigCheck('cut_attack_surface', 'my', 'KGDB', 'is not set')]
# 'harden_userspace'
if arch in ('X86_64', 'ARM64', 'X86_32'):