X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=kernel_hardening_checker%2F__init__.py;h=286f420ea5c016f72529647e44896223f65695de;hb=771ea4774d92d62c70c5e35657abc3e297d0551d;hp=48410057d6fbf86bc65277e812d1cedb0607061f;hpb=ede0155bc3a99e1fa5ea7405b91f6cda5b28b5e7;p=kconfig-hardened-check.git diff --git a/kernel_hardening_checker/__init__.py b/kernel_hardening_checker/__init__.py index 4841005..286f420 100644 --- a/kernel_hardening_checker/__init__.py +++ b/kernel_hardening_checker/__init__.py @@ -26,7 +26,11 @@ def _open(file: str, *args, **kwargs): if file.endswith('.gz'): open_method = gzip.open - return open_method(file, *args, **kwargs) + try: + return open_method(file, *args, **kwargs) + except FileNotFoundError: + sys.exit(f'[!] ERROR: unable to open {file}, are you sure it exists?') + def detect_arch(fname, archs): @@ -85,16 +89,16 @@ def print_unknown_options(checklist, parsed_options, opt_type): known_options = [] for o1 in checklist: - if o1.type != 'complex': + if o1.opt_type != 'complex': known_options.append(o1.name) continue for o2 in o1.opts: - if o2.type != 'complex': + if o2.opt_type != 'complex': if hasattr(o2, 'name'): known_options.append(o2.name) continue for o3 in o2.opts: - assert(o3.type != 'complex'), \ + assert(o3.opt_type != 'complex'), \ f'unexpected ComplexOptCheck inside {o2.name}' if hasattr(o3, 'name'): known_options.append(o3.name) @@ -117,9 +121,9 @@ def print_checklist(mode, checklist, with_results): if with_results: sep_line_len += 30 print('=' * sep_line_len) - print(f'{"option name":^40}|{"type":^7}|{"desired val":^12}|{"decision":^10}|{"reason":^18}', end='') + print(f'{"option_name":^40}|{"type":^7}|{"desired_val":^12}|{"decision":^10}|{"reason":^18}', end='') if with_results: - print('| check result', end='') + print('| check_result', end='') print() print('=' * sep_line_len) @@ -219,8 +223,8 @@ def parse_sysctl_file(mode, parsed_options, fname): sys.exit(f'[!] ERROR: {fname} doesn\'t look like a sysctl output file, please try `sudo sysctl -a > {fname}`') # let's check the presence of a sysctl option available for root - if 'net.core.bpf_jit_harden' not in parsed_options and mode != 'json': - print(f'[!] WARNING: sysctl option "net.core.bpf_jit_harden" available for root is not found in {fname}, please try `sudo sysctl -a > {fname}`') + if 'kernel.cad_pid' not in parsed_options and mode != 'json': + print(f'[!] WARNING: sysctl option "kernel.cad_pid" available for root is not found in {fname}, please try `sudo sysctl -a > {fname}`') def main():