From 6d88d1e97daf1a195fbc0d84534eda65696da7d0 Mon Sep 17 00:00:00 2001 From: Sebastian Lenzlinger <74497638+sebaschi@users.noreply.github.com> Date: Tue, 13 Jun 2023 11:48:42 +0200 Subject: [PATCH 1/2] Update keylogger_detector.py Fix Tabs in help messages --- src/keylogger_detector.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/keylogger_detector.py b/src/keylogger_detector.py index 7220979..b82fa5f 100755 --- a/src/keylogger_detector.py +++ b/src/keylogger_detector.py @@ -37,10 +37,10 @@ def print_help(): print(' -v, --verbose\t\t\tVerbose mode. Informative information will be displayed duting execution') print(' -a, --auto-kill\t\tAutomatically kill blacklisted processes') print(' -s, --safe\t\t\tSafe mode. Asked to confirm before killing a process') - print(' -w, --add-white-list\t\t\tActivate prompt to add program names to the whitelist') #For some reason this line gets messed up in display - print(' -b, --add-black-list\t\t\tAutomatically add program names chosen to kill to the blacklist') + print(' -w, --add-white-list\t\tActivate prompt to add program names to the whitelist') #For some reason this line gets messed up in display + print(' -b, --add-black-list\t\tAutomatically add program names chosen to kill to the blacklist') print(' -d, --debug\t\t\tDebug mode. Print debug statements') - print(' -k, --kernel-detection\t\t\tRun the kernel keylogger detector, too. CURRENTLY NOT IMPLEMENTED TO DIRECTLY RUN KERNEL DETECTOR.') + print(' -k, --kernel-detection\t\tRun the kernel keylogger detector, too. CURRENTLY NOT IMPLEMENTED TO DIRECTLY RUN KERNEL DETECTOR.') def set_input_options(): """ From 50c0cef1d2dfa4b9e0938f62c12d0247a9835a5b Mon Sep 17 00:00:00 2001 From: Sebastian Lenzlinger <74497638+sebaschi@users.noreply.github.com> Date: Tue, 13 Jun 2023 12:44:33 +0200 Subject: [PATCH 2/2] Update dev_journal.md fix link --- doc/dev_journal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/dev_journal.md b/doc/dev_journal.md index cf96a4c..17cd7ed 100644 --- a/doc/dev_journal.md +++ b/doc/dev_journal.md @@ -166,7 +166,7 @@ This is after extensivly refactoring because I was starting to loose oversight o ## Wednesday, 7. June 2023, day ### Sebastian VirtualBox stopped working so after much pain I decided to switch to Boxes. There the install of Fedora 37 went smoothly. -Then Started testing the userland detector on [simple-key-logger](https://github.com/gsingh93/simple-key-logger/tree/maste), [logkeys](https://github.com/kernc/logkeys). +Then Started testing the userland detector on [simple-key-logger](https://github.com/gsingh93/simple-key-logger/tree/master), [logkeys](https://github.com/kernc/logkeys). [pykeylogger](https://github.com/amoffat/pykeylogger) produced a segmentation fault, after I finaly got it to run. Trying to run [py-keylogger](https://github.com/hiamandeep/py-keylogger), turns out it only runs on X11 it seem (so we'd not catch it anyway). [keylog](https://github.com/SCOTPAUL/keylog) was succesfully detected and removed. All in all, the main functionality works as intended. Basically now would be the refinement phase to add more options or to have a way to configure the config.json file more easily.