forked from Initius1337/Auth.GG-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAuthGG.py
435 lines (417 loc) · 17 KB
/
AuthGG.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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
import requests
import json
import os
import time
import uuid
import sys
import hashlib
class AuthGG:
def __init__(self):
self.aid = ""
self.secret = ""
self.api_key = ""
self.version = ""
self.hash = ""
self.hwid = ""
self.is_initialized = False
self.can_login = False
self.can_register = False
self.freemode = ""
def WriteIntegrity(self):
with open("integrity.txt", "w", errors="ignore") as m:
m.write("{}".format(self.hash))
def Get_Hash(self) -> str:
hash = ""
BUF_SIZE = 65536
md5 = hashlib.md5()
try:
with open(sys.argv[0], "rb") as f:
while True:
data = f.read(BUF_SIZE)
if not data:
break
md5.update(data)
return md5.hexdigest()
except Exception as e:
return
(print("[!] Hash Calculating Failed!"),
time.sleep(3),
os._exit(0)
)
def Get_Hwid(self) -> str:
return str(uuid.getnode())
def Initialize(self, aid: str=None, secret: str=None, api_key: str=None, version: str=None):
if aid is None or secret is None or api_key is None or version is None:
return (
print("[!] Invalid application information!"),
time.sleep(3),
os._exit(0)
)
self.aid += aid
self.secret += secret
self.api_key += api_key
self.version += version
self.hash += AuthGG.Get_Hash()
self.hwid += AuthGG.Get_Hwid()
try:
with requests.Session() as sess:
sess.proxies = None
data = {
"type": "info",
"aid": self.aid,
"secret": self.secret,
"apikey": self.api_key
}
resp_1 = sess.post("https://api.auth.gg/v1/", data=data, proxies=None)
with resp_1:
resp_json1 = json.loads(resp_1.text)
if not "{\"status\":\"" in resp_1.text:
if resp_json1["result"] == "failed":
return (
print("[!] {}!".format(resp_json1["message"])),
time.sleep(3),
os._exit(0)
)
else:
if resp_json1["status"] == "Enabled":
self.is_initialized = True
self.freemode += resp_json1["freemode"]
if resp_json1["developermode"] == "Enabled":
self.can_login = True
self.can_register = True
return (
print("[!] Application is in Developer Mode, bypassing integrity and update check!"),
print("[!] Your applications hash has been saved to integrity.txt, please refer to this when your application is ready for release!"),
AuthGG.WriteIntegrity(),
time.sleep(3)
)
else:
if self.version != resp_json1["version"]:
return (
print("Update {} available, redirecting to update!".format(resp_json1["version"])),
os.system("start {}".format(resp_json1["downloadlink"])),
time.sleep(3),
os._exit(0)
)
if self.freemode == "Disabled":
if resp_json1["hash"] != self.hash:
return (
print("[!] File has been tampered with, couldn't verify integrity!!"),
time.sleep(3),
os._exit(0)
)
if resp_json1["login"] == "Enabled":
self.can_login = True
if resp_json1["register"] == "Enabled":
self.can_register = True
else:
return (
print("[!] Looks like this application is disabled, please try again later!"),
time.sleep(3),
os._exit(0)
)
except:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
def Register(self, username: str=None, password: str=None, email: str=None, license: str=None):
if not AuthGG.is_initialized:
return (
print("[!] Please initialize your application first!"),
time.sleep(3),
os._exit(0)
)
if not AuthGG.can_register:
return (
print("[!] Register is not enabled, please try again later!"),
time.sleep(3),
os._exit(0)
)
if username is None or password is None or email is None or license is None:
return (
print("[!] Invalid registrar information!"),
time.sleep(3),
os._exit(0)
)
try:
with requests.Session() as sess:
sess.proxies = None
data = {
"type": "register",
"hwid": self.hwid,
"email": email,
"license": license,
"password": password,
"username": username,
"aid": self.aid,
"secret": self.secret,
"apikey": self.api_key,
}
resp_2 = sess.post("https://api.auth.gg/v1/", data=data, proxies=None)
with resp_2:
resp_json2 = json.loads(resp_2.text)
if resp_json2["result"] == "success":
return True
elif resp_json2["result"] == "invalid_license":
return (
print("[!] License does not exist!"),
time.sleep(3),
os._exit(0)
)
elif resp_json2["result"] == "email_used":
return (
print("[!] Email has already been used!"),
time.sleep(3),
os._exit(0)
)
elif resp_json2["result"] == "invalid_username":
return (
print("[!] You entered an invalid/used username!"),
time.sleep(3),
os._exit(0)
)
else:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
except:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
def Login(self, username: str=None, password: str=None):
if not AuthGG.is_initialized:
return (
print("[!] Please initialize your application first!"),
time.sleep(3),
os._exit(0)
)
if not AuthGG.can_login:
return (
print("[!] Register is not enabled, please try again later!"),
time.sleep(3),
os._exit(0)
)
if username is None or password is None:
return (
print("[!] Missing user login information!"),
time.sleep(3),
os._exit(0)
)
try:
with requests.Session() as sess:
sess.proxies = None
data = {
"type": "login",
"hwid": self.hwid,
"password": password,
"username": username,
"aid": self.aid,
"secret": self.secret,
"apikey": self.api_key,
}
resp_3 = sess.post("https://api.auth.gg/v1/", data=data, proxies=None)
with resp_3:
resp_json3 = json.loads(resp_3.text)
if resp_json3["result"] == "success":
return True
elif resp_json3["result"] == "invalid_details":
return (
print("[!] Sorry, your username/password does not match!"),
time.sleep(3),
os._exit(0)
)
elif resp_json3["result"] == "time_expired":
return (
print("[!] Your subscription has expired!"),
time.sleep(3),
os._exit(0)
)
elif resp_json3["result"] == "hwid_updated":
return (
print("[!] New machine has been binded, re-open the application!"),
time.sleep(3),
os._exit(0)
)
elif resp_json3["result"] == "invalid_hwid":
return (
print("[!] This user is binded to another computer, please contact support!"),
time.sleep(3),
os._exit(0)
)
else:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
except:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
def AIOLogin(self, key):
if not AuthGG.is_initialized:
return (
print("[!] Please initialize your application first!"),
time.sleep(3),
os._exit(0)
)
try:
with requests.Session() as sess:
sess.proxies = None
data = {
"type": "login",
"hwid": self.hwid,
"password": key,
"username": key,
"aid": self.aid,
"secret": self.secret,
"apikey": self.api_key,
}
resp_4 = sess.post("https://api.auth.gg/v1/", data=data, proxies=None)
with resp_4:
resp_json4 = json.loads(resp_4.text)
if resp_json4["result"] == "success":
return True
elif resp_json4["result"] == "invalid_details":
return False
elif resp_json4["result"] == "time_expired":
return (
print("[!] Your subscription has expired!"),
time.sleep(3),
os._exit(0)
)
elif resp_json4["result"] == "hwid_updated":
return (
print("[!] New machine has been binded, re-open the application!"),
time.sleep(3),
os._exit(0)
)
elif resp_json4["result"] == "invalid_hwid":
return (
print("[!] This user is binded to another computer, please contact support!"),
time.sleep(3),
os._exit(0)
)
else:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
except:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
def AIORegister(self, key):
if not AuthGG.is_initialized:
return (
print("[!] Please initialize your application first!"),
time.sleep(3),
os._exit(0)
)
try:
with requests.Session() as sess:
sess.proxies = None
data = {
"type": "register",
"hwid": self.hwid,
"email": key,
"license": key,
"password": key,
"username": key,
"aid": self.aid,
"secret": self.secret,
"apikey": self.api_key,
}
resp_5 = sess.post("https://api.auth.gg/v1/", data=data, proxies=None)
with resp_5:
resp_json5 = json.loads(resp_5.text)
return resp_json5["result"] == "success"
except:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
def AIO(self, key: str=None):
if not AuthGG.is_initialized:
return (
print("[!] Please initialize your application first!"),
time.sleep(3),
os._exit(0)
)
if key is None:
return (
print("[!] Invalid Key!"),
time.sleep(3),
os._exit(0)
)
if AuthGG.AIOLogin(key):
return True
else:
return bool(AuthGG.AIORegister(key))
def ExtendSubscription(self, username, password, license):
if not AuthGG.is_initialized:
return (
print("[!] Please initialize your application first!"),
time.sleep(3),
os._exit(0)
)
if username is None or password is None or license is None:
return (
print("[!] Invalid informations!"),
time.sleep(3),
os._exit(0)
)
try:
with requests.Session() as sess:
sess.proxies = None
data = {
"type": "extend",
"license": license,
"password": password,
"username": username,
"aid": self.aid,
"secret": self.secret,
"apikey": self.api_key,
}
resp_6 = sess.post("https://api.auth.gg/v1/", data=data, proxies=None)
with resp_6:
resp_json6 = json.loads(resp_6.text)
if resp_json6["result"] == "success":
return True
elif resp_json6["result"] == "invalid_license":
return (
print("[!] License does not exist!"),
time.sleep(3),
os._exit(0)
)
elif resp_json6["result"] == "invalid_details":
return (
print("[!] Your user details are invalid!"),
time.sleep(3),
os._exit(0)
)
else:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
except:
return (
print("[!] Something went wrong, contact administrator!"),
time.sleep(3),
os._exit(0)
)
AuthGG = AuthGG()