Stop Kernel Detector from allways running and crashing the system

This commit is contained in:
Sebastian Lenzlinger 2023-06-13 11:38:35 +02:00
parent 92fc49ac9e
commit 72bbf7a575
3 changed files with 2 additions and 4 deletions

View File

@ -1,8 +1,8 @@
{ {
"white_listed_programs": [ "white_listed_programs": [
"systemd_logind", "systemd_logind",
"gnome-shell", "systemd",
"systemd" "gnome-shell"
], ],
"auto_kill_programs": [], "auto_kill_programs": [],
"kbd_names": [ "kbd_names": [

0
src/kernel_detector.py Normal file → Executable file
View File

View File

@ -13,7 +13,6 @@ from utils import (
kill_processes, kill_processes,
kill_process kill_process
) )
from kernel_detector import run_kernel_detector
# Global variables/CLI options # Global variables/CLI options
@ -294,7 +293,6 @@ def detect_keyloggers():
debug(debug_option, 'Kernel detection option: ' + str(kernel_detection_option)) debug(debug_option, 'Kernel detection option: ' + str(kernel_detection_option))
;
if __name__ == '__main__': if __name__ == '__main__':
detect_keyloggers() detect_keyloggers()