Update media api key grabber

This commit is contained in:
Parker M. 2024-07-26 20:45:40 -05:00
parent 2f088fab5d
commit d6e0313a5a
No known key found for this signature in database
GPG Key ID: 95CD2E0C7E329F2A

View File

@ -18,7 +18,8 @@ def get_media_api_key():
# Look for `const Ga="TOKEN HERE"`
for js_file in js_files:
response = requests.get(f"{url}/assets/{js_file}")
match = re.search(r"const Ga=\"(.*?)\"", response.text)
# "(?<token>(ey[\w-]+)\.([\w-]+)\.([\w-]+))" - Credit to https://github.com/topi314/LavaSrc
match = re.search(r'"(?P<token>ey[\w-]+\.[\w-]+\.[\w-]+)"', response.text)
if match:
return match.group(1)