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
75143ce1
Commit
75143ce1
authored
Jul 16, 2020
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix relevant pylint warnings
parent
3974da72
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
__init__.py
kconfig_hardened_check/__init__.py
+10
-8
No files found.
kconfig_hardened_check/__init__.py
View file @
75143ce1
...
@@ -54,6 +54,11 @@
...
@@ -54,6 +54,11 @@
# fs.suid_dumpable=0
# fs.suid_dumpable=0
# kernel.modules_disabled=1
# kernel.modules_disabled=1
# pylint: disable=missing-module-docstring,missing-class-docstring,missing-function-docstring
# pylint: disable=line-too-long,invalid-name,too-many-branches,too-many-statements
import
sys
import
sys
from
argparse
import
ArgumentParser
from
argparse
import
ArgumentParser
from
collections
import
OrderedDict
from
collections
import
OrderedDict
...
@@ -61,9 +66,6 @@ import re
...
@@ -61,9 +66,6 @@ import re
import
json
import
json
from
.__about__
import
__version__
from
.__about__
import
__version__
# pylint: disable=line-too-long,bad-whitespace,too-many-branches
# pylint: disable=too-many-statements,global-statement
class
OptCheck
:
class
OptCheck
:
def
__init__
(
self
,
reason
,
decision
,
name
,
expected
):
def
__init__
(
self
,
reason
,
decision
,
name
,
expected
):
...
@@ -89,7 +91,7 @@ class OptCheck:
...
@@ -89,7 +91,7 @@ class OptCheck:
return
True
return
True
return
False
return
False
def
table_print
(
self
,
mode
,
with_results
):
def
table_print
(
self
,
_
mode
,
with_results
):
print
(
'CONFIG_{:<38}|{:^13}|{:^10}|{:^20}'
.
format
(
self
.
name
,
self
.
expected
,
self
.
decision
,
self
.
reason
),
end
=
''
)
print
(
'CONFIG_{:<38}|{:^13}|{:^10}|{:^20}'
.
format
(
self
.
name
,
self
.
expected
,
self
.
decision
,
self
.
reason
),
end
=
''
)
if
with_results
:
if
with_results
:
print
(
'| {}'
.
format
(
self
.
result
),
end
=
''
)
print
(
'| {}'
.
format
(
self
.
result
),
end
=
''
)
...
@@ -98,7 +100,7 @@ class OptCheck:
...
@@ -98,7 +100,7 @@ class OptCheck:
class
VerCheck
:
class
VerCheck
:
def
__init__
(
self
,
ver_expected
):
def
__init__
(
self
,
ver_expected
):
self
.
ver_expected
=
ver_expected
self
.
ver_expected
=
ver_expected
self
.
ver
=
None
self
.
ver
=
()
self
.
result
=
None
self
.
result
=
None
def
check
(
self
):
def
check
(
self
):
...
@@ -114,7 +116,7 @@ class VerCheck:
...
@@ -114,7 +116,7 @@ class VerCheck:
self
.
result
=
'FAIL: version < '
+
str
(
self
.
ver_expected
[
0
])
+
'.'
+
str
(
self
.
ver_expected
[
1
])
self
.
result
=
'FAIL: version < '
+
str
(
self
.
ver_expected
[
0
])
+
'.'
+
str
(
self
.
ver_expected
[
1
])
return
False
return
False
def
table_print
(
self
,
mode
,
with_results
):
def
table_print
(
self
,
_
mode
,
with_results
):
ver_req
=
'kernel version >= '
+
str
(
self
.
ver_expected
[
0
])
+
'.'
+
str
(
self
.
ver_expected
[
1
])
ver_req
=
'kernel version >= '
+
str
(
self
.
ver_expected
[
0
])
+
'.'
+
str
(
self
.
ver_expected
[
1
])
print
(
'{:<91}'
.
format
(
ver_req
),
end
=
''
)
print
(
'{:<91}'
.
format
(
ver_req
),
end
=
''
)
if
with_results
:
if
with_results
:
...
@@ -134,7 +136,7 @@ class PresenceCheck:
...
@@ -134,7 +136,7 @@ class PresenceCheck:
self
.
result
=
'OK: is present'
self
.
result
=
'OK: is present'
return
True
return
True
def
table_print
(
self
,
mode
,
with_results
):
def
table_print
(
self
,
_
mode
,
with_results
):
print
(
'CONFIG_{:<84}'
.
format
(
self
.
name
+
' is present'
),
end
=
''
)
print
(
'CONFIG_{:<84}'
.
format
(
self
.
name
+
' is present'
),
end
=
''
)
if
with_results
:
if
with_results
:
print
(
'| {}'
.
format
(
self
.
result
),
end
=
''
)
print
(
'| {}'
.
format
(
self
.
result
),
end
=
''
)
...
@@ -448,7 +450,7 @@ def construct_checklist(l, arch):
...
@@ -448,7 +450,7 @@ def construct_checklist(l, arch):
l
+=
[
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'MEM_SOFT_DIRTY'
,
'is not set'
)]
l
+=
[
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'MEM_SOFT_DIRTY'
,
'is not set'
)]
l
+=
[
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'DEVPORT'
,
'is not set'
)]
# refers to LOCKDOWN
l
+=
[
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'DEVPORT'
,
'is not set'
)]
# refers to LOCKDOWN
l
+=
[
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'DEBUG_FS'
,
'is not set'
)]
# refers to LOCKDOWN
l
+=
[
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'DEBUG_FS'
,
'is not set'
)]
# refers to LOCKDOWN
l
+=
[
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'NOTIFIER_ERROR_INJECTION'
,
'is not set'
)]
l
+=
[
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'NOTIFIER_ERROR_INJECTION'
,
'is not set'
)]
l
+=
[
AND
(
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'X86_PTDUMP'
,
'is not set'
),
l
+=
[
AND
(
OptCheck
(
'cut_attack_surface'
,
'grsecurity'
,
'X86_PTDUMP'
,
'is not set'
),
OptCheck
(
'cut_attack_surface'
,
'my'
,
'PTDUMP_DEBUGFS'
,
'is not set'
))]
OptCheck
(
'cut_attack_surface'
,
'my'
,
'PTDUMP_DEBUGFS'
,
'is not set'
))]
...
...
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