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
77c84a4b
Commit
77c84a4b
authored
Jul 30, 2018
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update the function names according to the new meaning
parent
ff74ed40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
kconfig-hardened-check.py
kconfig-hardened-check.py
+4
-4
No files found.
kconfig-hardened-check.py
View file @
77c84a4b
...
...
@@ -95,7 +95,7 @@ class OR:
return
False
,
self
.
result
def
construct_
opt_checks
():
def
construct_
checklist
():
modules_not_set
=
OptCheck
(
'MODULES'
,
'is not set'
,
'kspp'
,
'cut_attack_surface'
)
devmem_not_set
=
OptCheck
(
'DEVMEM'
,
'is not set'
,
'kspp'
,
'cut_attack_surface'
)
...
...
@@ -204,7 +204,7 @@ def construct_opt_checks():
# checklist.append(OptCheck('LKDTM', 'm', 'my', 'feature_test'))
def
print_
opt_checks
():
def
print_
checklist
():
print
(
'[+] Printing kernel hardening preferences...'
)
print
(
' {:<39}|{:^13}|{:^10}|{:^20}'
.
format
(
'option name'
,
'desired val'
,
'decision'
,
'reason'
))
print
(
' ======================================================================================'
)
...
...
@@ -278,10 +278,10 @@ if __name__ == '__main__':
parser
.
add_argument
(
'--debug'
,
action
=
'store_true'
,
help
=
'enable internal debug mode'
)
args
=
parser
.
parse_args
()
construct_
opt_checks
()
construct_
checklist
()
if
args
.
print
:
print_
opt_checks
()
print_
checklist
()
sys
.
exit
(
0
)
if
args
.
debug
:
...
...
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