SableEye is a lightweight keylogger tool designed for the Windows opertating system. The tool demonstrates how keystrokes can be captured and recorded by a key logger.
- Clone the repository:
git clone "https://github.com/Hemsagar11/SableEye.git"
- Navigate to SableEye Directory and run SableEye.exe:
cd SableEye && .\SableEye.exe
- Alternatively, the source code can be compiled using
g++ -o SableEye sableEye.cpp
- A log file containing all the key strokes will be created as Keystrokes.txt but it would be hidden
- Additional functionalities:
- To open up the log file while the program is still running use:
CTLR + SHIFT + G
- To quit or close the keylogger use:
CTLR + SHIFT + Q
- Runs as a background process
- Captures all keystrokes
- Logs data to a file
- Uses minimal system resources
- Detaches the program from the console window, making it run without a visible console.
- Retrieves the state of a specified virtual key.The function returns -32767 if the key is currently pressed, and 0 if its not.
- Retrieves a handle to the foreground window. Identifies the currently active window to log window titles or monitor user activity.
- Retrieves the text of the specified window's title bar (if any).
- Sets the attributes of a file or directory. It is used to set hidden attribute to the log file making it less visible.
- These are symbolic constant names, hexadecimal values, and mouse or keyboard equivalents used by the system. Resource
Keyloggers can pose a significant threat to privacy and security. Here are some recommended measures to protect against keyloggers:
- Use Virtual Keyboards: They can prevent hardware keyloggers from capturing keystrokes.
- Utilize Anti-Keylogger Software: Specialized software can detect and neutralize keyloggers.
- Update Operating Systems and Applications: Regular updates can patch vulnerabilities.
- Use Updated Antivirus and Anti-Malware Software: These can detect and remove keyloggers.
- Enable Firewall Protection: Firewalls can prevent unauthorized access to your system.
Important Notice:
This software is provided for educational purposes only. Unauthorized use of this software to capture keystrokes without permission is illegal and unethical. By using this software, you agree to use it only in environments where you have explicit permission to monitor keystrokes. The developers are not responsible for any misuse of this software.
SableEye is currently closed-source. Contributions are not accepted at this time.
This project is licensed under the MIT License - see the LICENSE file for details.
Special thanks to OpenGenus resource for the tutorial and inspiration.