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
0ace1901
Commit
0ace1901
authored
Mar 05, 2020
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add kernel version detection
parent
5a2b22d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
1 deletions
+27
-1
kconfig-hardened-check.py
kconfig-hardened-check.py
+27
-1
No files found.
kconfig-hardened-check.py
View file @
0ace1901
...
...
@@ -156,7 +156,6 @@ def detect_arch(fname):
with
open
(
fname
,
'r'
)
as
f
:
arch_pattern
=
re
.
compile
(
"CONFIG_[a-zA-Z0-9_]*=y"
)
arch
=
None
msg
=
None
if
not
json_mode
:
print
(
'[+] Trying to detect architecture in "{}"...'
.
format
(
fname
))
for
line
in
f
.
readlines
():
...
...
@@ -173,6 +172,27 @@ def detect_arch(fname):
return
arch
,
'OK'
def
detect_version
(
fname
):
with
open
(
fname
,
'r'
)
as
f
:
ver_pattern
=
re
.
compile
(
"# Linux/.* Kernel Configuration"
)
if
not
json_mode
:
print
(
'[+] Trying to detect kernel version in "{}"...'
.
format
(
fname
))
for
line
in
f
.
readlines
():
if
ver_pattern
.
match
(
line
):
line
=
line
.
strip
()
if
not
json_mode
:
print
(
'[+] Found version line: "{}"'
.
format
(
line
))
parts
=
line
.
split
()
ver_str
=
parts
[
2
]
ver_numbers
=
ver_str
.
split
(
'.'
)
if
len
(
ver_numbers
)
<
3
or
not
ver_numbers
[
0
]
.
isdigit
()
or
not
ver_numbers
[
1
]
.
isdigit
():
msg
=
'failed to parse the version "'
+
ver_str
+
'"'
return
None
,
msg
else
:
return
(
int
(
ver_numbers
[
0
]),
int
(
ver_numbers
[
1
])),
None
return
None
,
'no kernel version detected'
def
construct_checklist
(
checklist
,
arch
):
modules_not_set
=
OptCheck
(
'MODULES'
,
'is not set'
,
'kspp'
,
'cut_attack_surface'
)
devmem_not_set
=
OptCheck
(
'DEVMEM'
,
'is not set'
,
'kspp'
,
'cut_attack_surface'
)
# refers to LOCK_DOWN_KERNEL
...
...
@@ -494,6 +514,12 @@ if __name__ == '__main__':
elif
not
json_mode
:
print
(
'[+] Detected architecture: {}'
.
format
(
arch
))
kernel_version
,
msg
=
detect_version
(
args
.
config
)
if
not
kernel_version
:
sys
.
exit
(
'[!] ERROR: {}'
.
format
(
msg
))
elif
not
json_mode
:
print
(
'[+] Detected kernel version: {}.{}'
.
format
(
kernel_version
[
0
],
kernel_version
[
1
]))
construct_checklist
(
config_checklist
,
arch
)
check_config_file
(
config_checklist
,
args
.
config
)
error_count
=
len
(
list
(
filter
(
lambda
opt
:
opt
.
result
.
startswith
(
'FAIL'
),
config_checklist
)))
...
...
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