KeyLogger v3.1 - говоря по-русски, эльф ведущий лог нажатия клавиш на телефоне на протяжении его работы
A keylogger for SE phones. Logs all pressed keys to the log folder specified in the ini file.
The file / folder structure will be like this:
%[LOG_FOLDER]%/YYYY-MM-DD/HH.MM.SS.txt
The log will be kept in the memory until one of the three dump methods are called, or when the elf is killed:
1. By pressing the "new file key"
2. After a specified time
3. After a specified number of logged keys
All methods can be configured in keylogger.ini.
Extended mode:
If the extended mode is enabled, the output to the file will be more detailed.
See the attached "Log sample.txt" for more info on the differences.
[GROUP_NUMERIC]: 0x01
makes the elf group numeric keys like this:
Code
00:00:00 | Numeric:
00:00:10 | 123456_23_12_
where numbers with a "_" after is a long key press.
The group mode can only be used if the extended mode is disabled.
You can also select whether the elf shall be showed in BookManager with the [SHOW_IN_BM] parameter.
keylogger.ini sample:
Code
;Keylogger.ini
;[TERMINATE_KEY]: 0xFF ;No key
[TERMINATE_KEY]: KEY_POWER
[TERMINATE_KEY_MODE]: SHORT_PRESS
[NEW_FILE_KEY]: KEY_STAR
[NEW_FILE_KEY_MODE]: LONG_PRESS
[LOG_FOLDER]: /usb/other/keylog/
[MAX_TIME]: 30000
[MAX_CLICKS]: 200
[EXT_LOG_MODE]: 0x00
[SHOW_IN_BM]: 0x01
[GROUP_KEYPAD]: 0x01
[IGNORE_KEYLOCK]: 0x01
Key modes:
SHORT_PRESS
SHORT_RELEASE
LONG_PRESS
LONG_RELEASE
Keys:
See keys.txt in attached keys.7z
As usual, the keylogger.ini file should be placed in the ini folder.
Change log:
v3.1
* No empty files
* Ability to ignore keylock
* Ability to group numeric keys
* You can now use KEY_NAMES/MODES instead of key/mode values for term, and new file key
* Bug fixes