-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathgenerator.py
254 lines (203 loc) · 9.07 KB
/
generator.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
# -*- coding: utf-8 -*-
"""
“Commons Clause” License Condition v1.0
Copyright Oli 2019-2024
The Software is provided to you by the Licensor under the
License, as defined below, subject to the following condition.
Without limiting other conditions in the License, the grant
of rights under the License will not include, and the License
does not grant to you, the right to Sell the Software.
For purposes of the foregoing, “Sell” means practicing any or
all of the rights granted to you under the License to provide
to third parties, for a fee or other consideration (including
without limitation fees for hosting or consulting/ support
services related to the Software), a product or service whose
value derives, entirely or substantially, from the functionality
of the Software. Any license notice or attribution required by
the License must also include this Commons Clause License
Condition notice.
Software: DeviceAuthGenerator
License: Apache 2.0 Modified.
"""
import asyncio
import webbrowser
import json
import platform
import os
import sys
import aiohttp
import pyperclip
__version__ = "1.3.0"
SWITCH_TOKEN = "OThmN2U0MmMyZTNhNGY4NmE3NGViNDNmYmI0MWVkMzk6MGEyNDQ5YTItMDAxYS00NTFlLWFmZWMtM2U4MTI5MDFjNGQ3"
ANDROID_TOKEN = "M2Y2OWU1NmM3NjQ5NDkyYzhjYzI5ZjFhZjA4YThhMTI6YjUxZWU5Y2IxMjIzNGY1MGE2OWVmYTY3ZWY1MzgxMmU="
class EpicUser:
def __init__(self, data: dict = {}):
self.raw = data
self.access_token = data.get("access_token", "")
self.expires_in = data.get("expires_in", 0)
self.expires_at = data.get("expires_at", "")
self.token_type = data.get("token_type", "")
self.refresh_token = data.get("refresh_token", "")
self.refresh_expires = data.get("refresh_expires", "")
self.refresh_expires_at = data.get("refresh_expires_at", "")
self.account_id = data.get("account_id", "")
self.client_id = data.get("client_id", "")
self.internal_client = data.get("internal_client", False)
self.client_service = data.get("client_service", "")
self.display_name = data.get("displayName", "")
self.app = data.get("app", "")
self.in_app_id = data.get("in_app_id", "")
async def get_email(self) -> None:
async with aiohttp.ClientSession() as session:
async with session.request(
method="GET",
url="https://account-public-service-prod03.ol.epicgames.com/"
f"account/api/public/account/displayName/{self.display_name}",
headers={"Authorization": f"bearer {self.access_token}"},
) as request:
data = await request.json()
return data["email"]
class EpicGenerator:
def __init__(self) -> None:
self.http: aiohttp.ClientSession
self.access_token = ""
self.user_agent = f"DeviceAuthGenerator/{__version__} {platform.system()}/{platform.version()}"
async def start(self) -> None:
self.http = aiohttp.ClientSession(headers={"User-Agent": self.user_agent})
self.access_token = await self.get_access_token()
print(
f"DeviceAuthGenerator v{__version__} made by xMistt // Oli. Ask for help in PartyBot."
)
await asyncio.sleep(3)
while True:
os.system('cls' if sys.platform.startswith('win') else 'clear')
device_code = await self.create_device_code()
webbrowser.open(device_code[0], new=1)
print(f"Opening {device_code[0]} in a new tab.\n"
f"Waiting for login...")
user = await self.wait_for_device_code_completion(code=device_code[1])
device_auths = await self.create_device_auths(user)
os.system('cls' if sys.platform.startswith('win') else 'clear')
pretty_device_auths = json.dumps(device_auths, sort_keys=False, indent=4)
print(f"Generated device auths for: {user.display_name}.")
print(pretty_device_auths)
pyperclip.copy(pretty_device_auths)
await self.save_device_auths(device_auths=device_auths, user=user)
print("\n")
print(
"They have been copied to the clipboard & saved in device_auths.json."
)
choice = input("Do you want to generate another device auth? (Y/N): ")
if choice.lower().strip() != "y":
break
else:
os.system('cls' if sys.platform.startswith('win') else 'clear')
print('Restarting DeviceAuthGenerator...')
await asyncio.sleep(1)
await self.http.close()
sys.exit()
async def get_access_token(self) -> str:
async with self.http.request(
method="POST",
url="https://account-public-service-prod.ol.epicgames.com/account/api/oauth/token",
headers={
"Content-Type": "application/x-www-form-urlencoded",
"Authorization": f"basic {SWITCH_TOKEN}",
},
data={
"grant_type": "client_credentials",
},
) as request:
data = await request.json()
return data["access_token"]
async def create_device_code(self) -> tuple:
async with self.http.request(
method="POST",
url="https://account-public-service-prod03.ol.epicgames.com/account/api/oauth/deviceAuthorization",
headers={
"Authorization": f"bearer {self.access_token}",
"Content-Type": "application/x-www-form-urlencoded",
},
) as request:
data = await request.json()
return data["verification_uri_complete"], data["device_code"]
async def wait_for_device_code_completion(self, code: str) -> EpicUser:
# os.system('cls' if sys.platform.startswith('win') else 'clear')
while True:
async with self.http.request(
method="POST",
url="https://account-public-service-prod03.ol.epicgames.com/account/api/oauth/token",
headers={
"Authorization": f"basic {SWITCH_TOKEN}",
"Content-Type": "application/x-www-form-urlencoded",
},
data={"grant_type": "device_code", "device_code": code},
) as request:
token = await request.json()
if request.status == 200:
break
else:
if (
token["errorCode"]
== "errors.com.epicgames.account.oauth.authorization_pending"
):
pass
elif token["errorCode"] == "errors.com.epicgames.not_found":
pass
else:
print(json.dumps(token, sort_keys=False, indent=4))
await asyncio.sleep(10)
async with self.http.request(
method="GET",
url="https://account-public-service-prod03.ol.epicgames.com/account/api/oauth/exchange",
headers={"Authorization": f"bearer {token['access_token']}"},
) as request:
exchange = await request.json()
async with self.http.request(
method="POST",
url="https://account-public-service-prod03.ol.epicgames.com/account/api/oauth/token",
headers={
"Authorization": f"basic {ANDROID_TOKEN}",
"Content-Type": "application/x-www-form-urlencoded",
},
data={
"grant_type": "exchange_code",
"exchange_code": exchange["code"],
},
) as request:
auth_information = await request.json()
return EpicUser(data=auth_information)
async def create_device_auths(self, user: EpicUser) -> dict:
async with self.http.request(
method="POST",
url="https://account-public-service-prod.ol.epicgames.com/"
f"account/api/public/account/{user.account_id}/deviceAuth",
headers={
"Authorization": f"bearer {user.access_token}",
"Content-Type": "application/json",
},
) as request:
data = await request.json()
return {
"device_id": data["deviceId"],
"account_id": data["accountId"],
"secret": data["secret"],
"user_agent": data["userAgent"],
"created": {
"location": data["created"]["location"],
"ip_address": data["created"]["ipAddress"],
"datetime": data["created"]["dateTime"],
},
}
async def save_device_auths(self, device_auths: dict, user: EpicUser) -> None:
if os.path.isfile("device_auths.json"):
with open("device_auths.json", "r") as fp:
current = json.load(fp)
else:
current = {}
email = await user.get_email()
current[email] = device_auths
with open("device_auths.json", "w") as fp:
json.dump(current, fp, sort_keys=False, indent=4)
gen = EpicGenerator()
asyncio.run(gen.start())