This commit is contained in:
Sebastian Lenzlinger 2023-06-07 18:33:48 +02:00
parent 6e9f236c08
commit 5c55876878

View File

@ -225,6 +225,8 @@ def detect_keyloggers():
for name in to_kill: for name in to_kill:
for pid in name_pid_dict[name]: for pid in name_pid_dict[name]:
if confirm_kill_procces(name): if confirm_kill_procces(name):
debug(debug_option, 'Killing process: ' + name)
debug(debug_option, 'type(id): ' + str(type(id)))
kill_process(id) kill_process(id)
if verbose_option: if verbose_option:
print('[Verbose] Process killed:', name) print('[Verbose] Process killed:', name)