All Projects â†’ fabriciorissetto â†’ KeystrokeAPI

fabriciorissetto / KeystrokeAPI

Licence: WTFPL license
🔒 A simple Keylogger API written in C# that works for any Windows OS version

Programming Languages

C#
18002 projects
Batchfile
5799 projects

Labels

Projects that are alternatives of or similar to KeystrokeAPI

rkduck
Linux v4.x.x Rootkit
Stars: ✭ 83 (-1.19%)
Mutual labels:  keylogger
ToxicEye
👽 Program for remote control of windows computers via telegram bot. Written in C#
Stars: ✭ 305 (+263.1%)
Mutual labels:  keylogger
argus
Argus Advanced Remote & Local Keylogger For macOS and Windows
Stars: ✭ 87 (+3.57%)
Mutual labels:  keylogger
BackNet
Remote Administration Tool with botnet capability, Windows
Stars: ✭ 41 (-51.19%)
Mutual labels:  keylogger
logger
☠ 😈 👀 Simple,Secure & Undetected (6.11.2017) keylogger for Windows :)
Stars: ✭ 37 (-55.95%)
Mutual labels:  keylogger
R2
A Swift macOS application which turns your keystrokes into music
Stars: ✭ 21 (-75%)
Mutual labels:  keylogger
fakesudo
sudo almost as fake as your ma
Stars: ✭ 15 (-82.14%)
Mutual labels:  keylogger
KeyLy
A powerfull and awesome Keylogger(Your keyboard and your mouse) realy helpfull for hackers! :-P (C/C++)
Stars: ✭ 17 (-79.76%)
Mutual labels:  keylogger
Keylogger
A keylogger for Windows, developed as part of the "Build an Advanced Keylogger using C++ for Ethical Hacking!" course on Udemy
Stars: ✭ 16 (-80.95%)
Mutual labels:  keylogger
PythonKeylogger
A remote keylogger with some cool features
Stars: ✭ 38 (-54.76%)
Mutual labels:  keylogger
PyIris
PyIris is a modular remote access trojan toolkit written in python targeting Windows and Linux systems.
Stars: ✭ 296 (+252.38%)
Mutual labels:  keylogger
Unknown-Logger
An advanced Windows Keylogger with features like (Disable CMD, Screenshotter, Client Stub Builder, Low Level Keyhooks, Hide Application, Respawner, Delete Chrome and Firefox data, and more!)
Stars: ✭ 23 (-72.62%)
Mutual labels:  keylogger
acoustic-keylogger
Pipeline of a keylogging attack using just an audio signal and unsupervised learning.
Stars: ✭ 80 (-4.76%)
Mutual labels:  keylogger
Lo0sR
Lo0sR is a simple python Keylogger with many functions.
Stars: ✭ 48 (-42.86%)
Mutual labels:  keylogger
python-keylogger
Advanced Pure-Python Keylogger
Stars: ✭ 64 (-23.81%)
Mutual labels:  keylogger
Teardroid-phprat
🇮🇳 🤖 It's easy to use android botnet work without port forwarding, vps and android studio
Stars: ✭ 417 (+396.43%)
Mutual labels:  keylogger
Keylogger
Simple C++ Keylogger...
Stars: ✭ 114 (+35.71%)
Mutual labels:  keylogger
paradoxiaRAT
ParadoxiaRat : Native Windows Remote access Tool.
Stars: ✭ 583 (+594.05%)
Mutual labels:  keylogger
Spyware
Python-based spyware for Windows that logs the foreground window activites, keyboard inputs. Furthermore it is able to take screenshots and and run shell commands in the background.
Stars: ✭ 31 (-63.1%)
Mutual labels:  keylogger
Python-Keylogger
Python Tutorial - || Advanced Keylogger || Code Walk-through || Hacking/Info-Sec ||
Stars: ✭ 55 (-34.52%)
Mutual labels:  keylogger

KeystrokeAPI

A simple Keystroke API written in C# that works for any version of Windows. It abstracts the access to the win32.dll and the handling of low level hooks (only keyboard for now).

Instalation

Install-Package KeystrokeAPI

How to use

1 - Call the CreateKeyboardHook() method passing your callback like this:

api.CreateKeyboardHook((character) => { Console.Write(character); });

2 - Implement your own "Windows Message Loop" OR call this:

Application.Run();

NOTE: This call starts the windows message loop for you, but you will need to reference the System.Windows.Forms.dll in your project. Click here to know why.

Code Example (using a Console Application)

class Program
{
    static void Main(string[] args)
    {
        using (var api = new KeystrokeAPI())
        {
            api.CreateKeyboardHook((character) => { Console.Write(character); });
            Application.Run();
        }
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].