Skip to content

Click, Click. Click. Capture every last keystroke on your local keyboard.

Notifications You must be signed in to change notification settings

LuvForAirplanes/Keylogger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Keylogger

Complete monitoring over the local keyboard by integrating low level keyboard hooks using the User32 dll. I copied this code heavily from https://github.com/fabriciorissetto/KeystrokeAPI making my own modifications here and there.

Code Example

class Program
{
    static void Main(string[] args)
    {
        using (var api = new KeystrokeAPI())
        {
            api.CreateKeyboardHook((character) => { Console.Write(character); });
            Application.Run();
        }
    }
}

//note: you will need to reference System.Windows.Forms for Application.Run();

About

Click, Click. Click. Capture every last keystroke on your local keyboard.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages