This commit is contained in:
Sebastian Lenzlinger
2023-06-07 01:31:39 +02:00
parent 96ffca9097
commit befe4814cf
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@ def detect_keyloggers():
pids = []
for device_file in keyboard_device_files:
pids.append(get_pids_using_file(device_file))
pids = sorted(list(set(pids)))
pids = sorted(list(set(int(pid) for pid in pids)))
if verbose_option:
print('[Verbose] Process IDs using keyboard device files:', pids)