Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tabahi/keylogger4dummies
Keylogger for dummies in C++ Windows
https://github.com/tabahi/keylogger4dummies
cpp14 keyboard keylogger windows
Last synced: 15 days ago
JSON representation
Keylogger for dummies in C++ Windows
- Host: GitHub
- URL: https://github.com/tabahi/keylogger4dummies
- Owner: tabahi
- License: gpl-3.0
- Created: 2024-09-17T20:47:34.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T23:30:03.000Z (about 2 months ago)
- Last Synced: 2024-10-31T11:06:15.394Z (15 days ago)
- Topics: cpp14, keyboard, keylogger, windows
- Language: C++
- Homepage:
- Size: 104 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Keylogger 4 dummies
A simple key logger written in C++ with Visual Studio 2022 solution (.sln) to help you traceback your work. Configure it according to your keyboard and OS then recompile it.## Executable
A compiled executable for Win_x64 can be found in [compiled_v0.1_KLG4D.zip](./compiled_x64_windows) . To run it on any other OS, you will have to reconfigure the solution.## Visual Studio Solution
- Install Visual Studio Community from https://visualstudio.microsoft.com/vs/community/
- Select Windows SDK during installation.
- Clone this repo to a local directory.
- Open the solution file in Visual Studio: [KLG4D.sln](./KLG4D)
- Edit the code in [KLG4D.cpp](./KLG4D/KLG4D/KLG4D.cpp)
- Build.![VisualStudioSettings](VisualStudioSettings.PNG)
## Safe Use
Use it responsibly and with caution on your own personal computer. Keyloggers attract the attention of intelligent anti-viruses therefore avoid adding any suspicious code to it. To avoid raising red flags, here are a few tips:
- Avoid using timestamps, user or system variables (e.g., PC name, IP, mac-addresses).
- Avoid reading registery keys.
- Avoid start-up runs or self-copying.
- Avoid using random generators.## Debugging
Everyone is welcome to raise ISSUES.