From: Fabrice Fontaine Date: Wed, 29 Nov 2023 16:37:58 +0000 (+0100) Subject: add --kernel-version option X-Git-Tag: v0.6.6~48^2 X-Git-Url: https://jxself.org/git/?p=kconfig-hardened-check.git;a=commitdiff_plain;h=388332cf000255ff830c62e7fc926025d9932349 add --kernel-version option --kernel-version option will extract the version in /proc/version. This is especially useful on embedded systems where config.gz doesn't always contain the kernel version Signed-off-by: Fabrice Fontaine --- diff --git a/README.md b/README.md index 48aa1b0..ee47975 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,9 @@ options: -s SYSCTL, --sysctl SYSCTL check the security hardening options in the sysctl output file (`sudo sysctl -a > file`) + -v VERSION, --kernel-version VERSION + extract the version from the kernel version file + (contents of /proc/version) -p {X86_64,X86_32,ARM64,ARM}, --print {X86_64,X86_32,ARM64,ARM} print the security hardening recommendations for the selected microarchitecture diff --git a/kernel_hardening_checker/__init__.py b/kernel_hardening_checker/__init__.py index 87f438e..066b397 100644 --- a/kernel_hardening_checker/__init__.py +++ b/kernel_hardening_checker/__init__.py @@ -48,7 +48,7 @@ def detect_arch(fname, archs): def detect_kernel_version(fname): with _open(fname, 'rt', encoding='utf-8') as f: - ver_pattern = re.compile("# Linux/.+ Kernel Configuration$") + ver_pattern = re.compile("^# Linux/.+ Kernel Configuration$|^Linux version .+") for line in f.readlines(): if ver_pattern.match(line): line = line.strip() @@ -241,6 +241,8 @@ def main(): help='check the security hardening options in the kernel cmdline file (contents of /proc/cmdline)') parser.add_argument('-s', '--sysctl', help='check the security hardening options in the sysctl output file (`sudo sysctl -a > file`)') + parser.add_argument('-v', '--kernel-version', + help='extract the version from the kernel version file (contents of /proc/version)') parser.add_argument('-p', '--print', choices=supported_archs, help='print the security hardening recommendations for the selected microarchitecture') parser.add_argument('-g', '--generate', choices=supported_archs, @@ -274,8 +276,13 @@ def main(): if mode != 'json': print(f'[+] Detected microarchitecture: {arch}') - kernel_version, msg = detect_kernel_version(args.config) + if args.kernel_version: + kernel_version, msg = detect_kernel_version(args.kernel_version) + else: + kernel_version, msg = detect_kernel_version(args.config) if kernel_version is None: + if not args.kernel_version: + print('[!] Hint: provide the kernel version file through --kernel-version option') sys.exit(f'[!] ERROR: {msg}') if mode != 'json': print(f'[+] Detected kernel version: {kernel_version[0]}.{kernel_version[1]}')