Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/canciucostin/simple-windows-keylogger
Simple Windows keylogger using C language
https://github.com/canciucostin/simple-windows-keylogger
c keylogger windows
Last synced: about 1 month ago
JSON representation
Simple Windows keylogger using C language
- Host: GitHub
- URL: https://github.com/canciucostin/simple-windows-keylogger
- Owner: CanciuCostin
- Created: 2020-03-28T23:16:07.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-22T07:21:44.000Z (over 4 years ago)
- Last Synced: 2024-12-09T12:22:10.984Z (about 1 month ago)
- Topics: c, keylogger, windows
- Language: C++
- Homepage:
- Size: 32.2 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Windows Keylogger
Simple Windows keylogger using C language
### Description
* Record key strokes and save logs to a text file
* The keylogger is visible in task manager
* The process is detached though, so the console does not open### Recorded keys
* Letters: **a-z, A-Z**
* Digits & shifted digits: **0-9, [!@#$%^&*()]**
* Special characters (shifted & not shifted): **[`-=[]\;',./], [~_+{}|:"<>?]**
* Special keys: **SPACE, ENTER, CTR, ALT, etc.**### Customize
* The default log file is set to the relative path of the project:
```
#define LOG_FILE "KeyLogs.txt"
```
* **InputKeyHelper** can be modified to change key recording logic