Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kernel-hardening-checker
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
kernel-hardening-checker
Commits
a2c605aa
Commit
a2c605aa
authored
Mar 05, 2020
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update 'decision' for new KSPP recommendations
parent
1d13eaad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
12 deletions
+14
-12
kconfig-hardened-check.py
kconfig-hardened-check.py
+14
-12
No files found.
kconfig-hardened-check.py
View file @
a2c605aa
...
...
@@ -18,6 +18,8 @@
# page_alloc.shuffle=1
# iommu=force (does it help against DMA attacks?)
# page_poison=1 (if enabled)
# init_on_alloc=1
# init_on_free=1
#
# Mitigations of CPU vulnerabilities:
# Аrch-independent:
...
...
@@ -292,6 +294,18 @@ def construct_checklist(checklist, arch):
modules_not_set
))
checklist
.
append
(
OR
(
OptCheck
(
'MODULE_SIG_FORCE'
,
'y'
,
'kspp'
,
'self_protection'
),
\
modules_not_set
))
# refers to LOCK_DOWN_KERNEL
checklist
.
append
(
OR
(
OptCheck
(
'INIT_STACK_ALL'
,
'y'
,
'kspp'
,
'self_protection'
),
\
OptCheck
(
'GCC_PLUGIN_STRUCTLEAK_BYREF_ALL'
,
'y'
,
'kspp'
,
'self_protection'
)))
checklist
.
append
(
OptCheck
(
'INIT_ON_ALLOC_DEFAULT_ON'
,
'y'
,
'kspp'
,
'self_protection'
))
checklist
.
append
(
OR
(
OptCheck
(
'INIT_ON_FREE_DEFAULT_ON'
,
'y'
,
'kspp'
,
'self_protection'
),
\
OptCheck
(
'PAGE_POISONING'
,
'y'
,
'kspp'
,
'self_protection'
)))
# before v5.3
if
debug_mode
or
arch
==
'X86_64'
or
arch
==
'ARM64'
or
arch
==
'X86_32'
:
stackleak_is_set
=
OptCheck
(
'GCC_PLUGIN_STACKLEAK'
,
'y'
,
'kspp'
,
'self_protection'
)
checklist
.
append
(
stackleak_is_set
)
checklist
.
append
(
AND
(
OptCheck
(
'STACKLEAK_METRICS'
,
'is not set'
,
'clipos'
,
'self_protection'
),
\
stackleak_is_set
))
checklist
.
append
(
AND
(
OptCheck
(
'STACKLEAK_RUNTIME_DISABLE'
,
'is not set'
,
'clipos'
,
'self_protection'
),
\
stackleak_is_set
))
if
debug_mode
or
arch
==
'X86_64'
or
arch
==
'X86_32'
:
checklist
.
append
(
OptCheck
(
'DEFAULT_MMAP_MIN_ADDR'
,
'65536'
,
'kspp'
,
'self_protection'
))
if
debug_mode
or
arch
==
'X86_32'
:
...
...
@@ -303,24 +317,12 @@ def construct_checklist(checklist, arch):
checklist
.
append
(
OptCheck
(
'SYN_COOKIES'
,
'y'
,
'kspp'
,
'self_protection'
))
# another reason?
checklist
.
append
(
OptCheck
(
'DEFAULT_MMAP_MIN_ADDR'
,
'32768'
,
'kspp'
,
'self_protection'
))
checklist
.
append
(
OR
(
OptCheck
(
'INIT_STACK_ALL'
,
'y'
,
'clipos'
,
'self_protection'
),
\
OptCheck
(
'GCC_PLUGIN_STRUCTLEAK_BYREF_ALL'
,
'y'
,
'kspp'
,
'self_protection'
)))
checklist
.
append
(
OptCheck
(
'INIT_ON_ALLOC_DEFAULT_ON'
,
'y'
,
'clipos'
,
'self_protection'
))
checklist
.
append
(
OR
(
OptCheck
(
'INIT_ON_FREE_DEFAULT_ON'
,
'y'
,
'clipos'
,
'self_protection'
),
\
OptCheck
(
'PAGE_POISONING'
,
'y'
,
'kspp'
,
'self_protection'
)))
checklist
.
append
(
OptCheck
(
'SECURITY_DMESG_RESTRICT'
,
'y'
,
'clipos'
,
'self_protection'
))
checklist
.
append
(
OptCheck
(
'DEBUG_VIRTUAL'
,
'y'
,
'clipos'
,
'self_protection'
))
checklist
.
append
(
OptCheck
(
'STATIC_USERMODEHELPER'
,
'y'
,
'clipos'
,
'self_protection'
))
# needs userspace support (systemd)
checklist
.
append
(
OptCheck
(
'SLAB_MERGE_DEFAULT'
,
'is not set'
,
'clipos'
,
'self_protection'
))
# slab_nomerge
checklist
.
append
(
AND
(
OptCheck
(
'GCC_PLUGIN_RANDSTRUCT_PERFORMANCE'
,
'is not set'
,
'clipos'
,
'self_protection'
),
\
randstruct_is_set
))
if
debug_mode
or
arch
==
'X86_64'
or
arch
==
'ARM64'
or
arch
==
'X86_32'
:
stackleak_is_set
=
OptCheck
(
'GCC_PLUGIN_STACKLEAK'
,
'y'
,
'clipos'
,
'self_protection'
)
checklist
.
append
(
stackleak_is_set
)
checklist
.
append
(
AND
(
OptCheck
(
'STACKLEAK_METRICS'
,
'is not set'
,
'clipos'
,
'self_protection'
),
\
stackleak_is_set
))
checklist
.
append
(
AND
(
OptCheck
(
'STACKLEAK_RUNTIME_DISABLE'
,
'is not set'
,
'clipos'
,
'self_protection'
),
\
stackleak_is_set
))
if
debug_mode
or
arch
==
'X86_64'
or
arch
==
'X86_32'
:
checklist
.
append
(
OptCheck
(
'RANDOM_TRUST_CPU'
,
'is not set'
,
'clipos'
,
'self_protection'
))
checklist
.
append
(
AND
(
OptCheck
(
'INTEL_IOMMU_SVM'
,
'y'
,
'clipos'
,
'self_protection'
),
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment