Skip to content

A lighweight C++ based Keylogger that uses windows API to hook the keystrokes.

License

Notifications You must be signed in to change notification settings

Hemsagar11/SableEye

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SableEye

SableEye Logo

Project Description

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.

Language Used

Installation

Steps

  1. Clone the repository: git clone "https://github.com/Hemsagar11/SableEye.git"
  2. Navigate to SableEye Directory and run SableEye.exe: cd SableEye && .\SableEye.exe
  3. Alternatively, the source code can be compiled using g++ -o SableEye sableEye.cpp
  4. A log file containing all the key strokes will be created as Keystrokes.txt but it would be hidden
  5. 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

Features

  • Runs as a background process
  • Captures all keystrokes
  • Logs data to a file
  • Uses minimal system resources

Code Overview

  1. FreeConsole() function

  • Detaches the program from the console window, making it run without a visible console.
  1. GetAsyncKeyState(int vKey)

  • Retrieves the state of a specified virtual key.The function returns -32767 if the key is currently pressed, and 0 if its not.
  1. GetForegroundWindow()

  • Retrieves a handle to the foreground window. Identifies the currently active window to log window titles or monitor user activity.
  1. GetWindowTextA(HWND hWnd, LPSTR lpString, int nMaxCount)

  • Retrieves the text of the specified window's title bar (if any).
  1. SetFileAttributesA(const char* lpFileName, DWORD dwFileAttributes)

  • Sets the attributes of a file or directory. It is used to set hidden attribute to the log file making it less visible.
  1. VK_KEYS

  • These are symbolic constant names, hexadecimal values, and mouse or keyboard equivalents used by the system. Resource

Protection Against Keyloggers

Keyloggers can pose a significant threat to privacy and security. Here are some recommended measures to protect against keyloggers:

  1. Use Virtual Keyboards: They can prevent hardware keyloggers from capturing keystrokes.
  2. Utilize Anti-Keylogger Software: Specialized software can detect and neutralize keyloggers.
  3. Update Operating Systems and Applications: Regular updates can patch vulnerabilities.
  4. Use Updated Antivirus and Anti-Malware Software: These can detect and remove keyloggers.
  5. Enable Firewall Protection: Firewalls can prevent unauthorized access to your system.

Disclaimer

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.

Contribution

SableEye is currently closed-source. Contributions are not accepted at this time.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgements

Special thanks to OpenGenus resource for the tutorial and inspiration.

About

A lighweight C++ based Keylogger that uses windows API to hook the keystrokes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages