forked from imvast/Discord-Account-Creator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
325 lines (281 loc) · 13 KB
/
main.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
import requests
from colored import fg, attr
from tls_client import Session, response
from websocket import WebSocket
from toml import load
from os import _exit, system, path, listdir
from time import time, sleep
from random import choice
from json import dumps
from threading import Thread, active_count
from base64 import b64encode
from veilcord import Solver
from terminut import Console
xtrack = 'eyJvcyI6IldpbmRvd3MiLCJicm93c2VyIjoiQ2hyb21lIiwiZGV2aWNlIjoiIiwic3lzdGVtX2xvY2FsZSI6ImVuLVVTIiwiYnJvd3Nlcl91c2VyX2FnZW50IjoiTW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzExMy4wLjAuMCBTYWZhcmkvNTM3LjM2IiwiYnJvd3Nlcl92ZXJzaW9uIjoiMTEzLjAuMC4wIiwib3NfdmVyc2lvbiI6IjEwIiwicmVmZXJyZXIiOiIiLCJyZWZlcnJpbmdfZG9tYWluIjoiIiwicmVmZXJyZXJfY3VycmVudCI6IiIsInJlZmVycmluZ19kb21haW5fY3VycmVudCI6IiIsInJlbGVhc2VfY2hhbm5lbCI6InN0YWJsZSIsImNsaWVudF9idWlsZF9udW1iZXIiOjk5OTksImNsaWVudF9ldmVudF9zb3VyY2UiOm51bGx9'
class Profile:
def __init__(self, session, token, headers):
self.token = token
headers['Referer'] = 'https://discord.com/channels/@me'
self.headers = headers
self.ws = WebSocket()
self.session = session
def ConnectWS(self):
self.ws.connect('wss://gateway.discord.gg/?encoding=json&v=9')
self.ws.send(dumps({
"op": 2,
"d": {
"token": self.token,
"capabilities": 8189,
"properties": {
"os": "Windows",
"browser": "Chrome",
"device": "",
"system_locale": "en-US",
"browser_user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36",
"browser_version": "111.0.0.0",
"os_version": "10",
"referrer": "",
"referring_domain": "",
"referrer_current": "",
"referring_domain_current": "",
"release_channel": "stable",
"client_build_number": 199933,
"client_event_source": None,
"design_id": 0
},
"presence": {
"status": choice(["online", "idle", "dnd"]),
"since": 0,
"activities": [{
"name": "Custom Status",
"type": 4,
"state": "vast#1337",
"emoji": ""
}],
"afk": False
},
"compress": False,
"client_state": {
"guild_versions": {},
"highest_last_message_id": "0",
"read_state_version": 0,
"user_guild_settings_version": -1,
"user_settings_version": -1,
"private_channels_version": "0",
"api_code_version": 0
}
}
}))
def UpdateDOB(self) -> response.Response:
payload = {
"date_of_birth": "2000-05-18" ,"global_name":"\x4D\x41\x44\x45\x20\x42\x59\x20\x56\x41\x53\x54"
}
headers = self.headers
headers["content-length"] = str(len(dumps(payload)))
dobres = self.session.patch('https://discord.com/api/v9/users/@me', headers=headers, json=payload)
return dobres
def AddBio(self, custom_bio: str = None) -> response.Response:
payload = {
"bio": "discord.gg/vast" if custom_bio is None else custom_bio
}
headers = self.headers
headers["content-length"] = str(len(dumps(payload)))
biores = self.session.patch('https://discord.com/api/v9/users/@me/profile', headers=headers, json=payload)
return biores
def AddPFP(self) -> response.Response:
folder_path = "./avatars"
image_files = [file for file in listdir(folder_path) if file.endswith(('.jpg', '.jpeg', '.png', '.gif'))]
if not image_files:
print("No image files found in the folder.")
random_image = choice(image_files)
image_path = path.join(folder_path, random_image)
with open(image_path, "rb") as image_file:
encoded_string = b64encode(image_file.read())
payload = {
"avatar": f"data:image/png;base64,{(encoded_string.decode('utf-8'))}",
}
headers = self.headers
headers["content-length"] = str(len(dumps(payload)))
addpfp = self.session.patch('https://discord.com/api/v9/users/@me', headers=headers, json=payload)
return addpfp
def AddHypesquad(self) -> response.Response:
payload = {
'house_id': choice(['1', '2', '3'])
}
headers = self.headers
headers["content-length"] = str(len(dumps(payload)))
hyperes = self.session.post("https://discord.com/api/v9/hypesquad/online", json=payload, headers=headers)
return hyperes
def EnableDevmode(self) -> response.Response:
payload = {
"settings": "agIQAQ=="
}
headers = self.headers
headers["content-length"] = str(len(dumps(payload)))
devres = self.session.patch('https://discord.com/api/v9/users/@me/settings-proto/1', headers=headers, json=payload)
return devres
class ConsoleX:
def titleThread():
while Stats.ACTIVE:
elapsed = round(time() - Stats.start, 2)
try:
unlocked_rate = round((Stats.unlocked / (Stats.locked + Stats.unlocked)) * 100, 2)
except:
unlocked_rate = 0
system(f"title [ VastGen ] U: {Stats.unlocked} | L: {Stats.locked} | UPM: {round(Stats.unlocked/elapsed,2)} @ {unlocked_rate}% | Elapsed: {elapsed}".replace("|", "^|"))
sleep(0.1)
class Stats:
unlocked = 0
locked = 0
start = time()
ACTIVE = True
class Discord:
def __init__(self) -> None:
self.proxy = (choice(open("./proxies.txt", "r").readlines()).strip()
if len(open("./proxies.txt", "r").readlines()) != 0
else None)
self.session = Session(
client_identifier="chrome_113",
random_tls_extension_order=True
)
self.session.proxies = {
"http": "http://" + self.proxy,
"https": "http://" + self.proxy
}
def getCookies(self) -> list:
headers = {
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.9',
'Connection': 'keep-alive',
'Referer': 'https://discord.com/',
'Sec-Fetch-Dest': 'empty',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Site': 'same-origin',
'Sec-GPC': '1',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36',
'X-Track': xtrack,
}
response = self.session.get('https://discord.com/api/v9/experiments', headers=headers)
return response.cookies, response.json().get("fingerprint")
def register(self) -> bool:
try:
xcookies, fingerprint = self.getCookies()
cookies = {
'__dcfduid': xcookies.get('__dcfduid'),
'__sdcfduid': xcookies.get('__sdcfduid'),
'__cfruid': xcookies.get('__cfruid'),
'locale': 'en-US',
}
config = load('config.toml')
captchaService = config.get("captcha").get("service")
key = config.get("captcha").get("capKey")
capKey = Solver(self.session, captchaService, key, "4c672d35-0701-42b2-88c3-78380b0db560").solveCaptcha()
payload = {
"consent": True,
"fingerprint": fingerprint,
"username": "vastdabest" if CONFIG_uname == "" else CONFIG_uname,
"captcha_key": capKey,
"invite": "vast"
}
headers = {
'Accept': '*/*',
'Accept-Language': 'en-US,en;q=0.9',
'Connection': 'keep-alive',
'content-length': str(len(dumps(payload))),
'Content-Type': 'application/json',
'Origin': 'https://discord.com',
'Referer': 'https://discord.com/',
'Sec-Fetch-Dest': 'empty',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Site': 'same-origin',
'Sec-GPC': '1',
'User-Agent': 'Mozilla/5.0 (Linux; Android 12.5; XBOX Build/NHG47K; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/117.0.0.0 Safari/537.36',
'X-Fingerprint': fingerprint,
'X-Track': xtrack,
}
response = self.session.post('https://discord.com/api/v9/auth/register', headers=headers, cookies=cookies, json=payload)
if "token" not in response.text:
if "retry_after" in response.text:
Console.printf(f"(-) RateLimit: {response.json().get('retry_after')}")
return False
Console.printf(f"(-) Failed to gen: {response.text}")
return False
token = response.json().get('token')
headers.pop('content-length')
headers.pop('X-Fingerprint')
headers['Authorization'] = token
status = requests.get('https://discord.com/api/v9/users/@me/library', headers=headers)
if status.status_code != 200:
if CONFIG_showLock:
Console.printf(f"(-) Locked Token: {token} [{status.status_code}]")
Stats.locked += 1
with open("./locked.txt", "a+") as f:
f.write(f"{token}\n")
return False
Console.printf(f"(+) {token}")
Stats.unlocked += 1
with open("./unlocked.txt", "a+") as f:
f.write(f"{token}\n")
profile = Profile(self.session, token, headers)
profile.ConnectWS()
profile.UpdateDOB()
humanizer = "(*) HUMANIZED | ("
if CONFIG_addBio:
biores = profile.AddBio()
if biores.status_code == 200:
humanizer += "BIO"
if CONFIG_addHype:
hyperes = profile.AddHypesquad()
if hyperes.status_code == 204:
if CONFIG_addBio:
humanizer += ", "
humanizer += "HYPE"
if CONFIG_enableDev:
devres = profile.EnableDevmode()
if devres.status_code == 200:
if CONFIG_addBio or CONFIG_addHype:
humanizer += ", "
humanizer += "DEVMODE"
if CONFIG_addPFP:
pfpres = profile.AddPFP()
if pfpres.status_code == 200:
if CONFIG_addBio or CONFIG_addHype or CONFIG_enableDev:
humanizer += ", "
humanizer += "PFP"
Console.printf(f"{humanizer})")
return True
except Exception as e:
Console.printf(f"(!) ExC: {e}")
if __name__ == "__main__":
config = load('config.toml')
PROFILE = config['profile']
CONFIG_enableDev = PROFILE['enableDev']
CONFIG_addHype = PROFILE['addHype']
CONFIG_addPFP = PROFILE['addPFP']
CONFIG_addBio = PROFILE['addBio']
DATA = config['data']
CONFIG_uname = DATA['username']
CONFIG_joinGuild = DATA['joinGuild']
CONFIG_threads = DATA['threads']
CONFIG_debug = DATA['debug']
CONFIG_showLock = DATA['showLockd']
system("cls||clear")
a = fg("#babaf8")
b = fg("#7c7cf8")
c = fg("#3e3ef8")
r = attr(0)
print(f"""
{a}┬ ┬ ┌─┐ ┌─┐ ┌┬┐
{b}└┐┌┘ ├─┤ └─┐ │ (free version)
{c} └┘ ┴ ┴ └─┘ ┴
""" + r)
try:
Thread(target=ConsoleX.titleThread).start()
while True:
while active_count()-1 < CONFIG_threads:
discord = Discord()
Thread(target=discord.register).start()
sleep(1)
except KeyboardInterrupt:
print("-> KeyboardInterrupt <-")
_exit(0)