项目作者: LuvForAirplanes

项目描述 :
Click, Click. Click. Capture every last keystroke on your local keyboard.
高级语言: C#
项目地址: git://github.com/LuvForAirplanes/Keylogger.git
创建时间: 2018-07-15T22:09:08Z
项目社区:https://github.com/LuvForAirplanes/Keylogger

开源协议:

下载


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

  1. class Program
  2. {
  3. static void Main(string[] args)
  4. {
  5. using (var api = new KeystrokeAPI())
  6. {
  7. api.CreateKeyboardHook((character) => { Console.Write(character); });
  8. Application.Run();
  9. }
  10. }
  11. }
  12. //note: you will need to reference System.Windows.Forms for Application.Run();