Skip to content

Instantly share code, notes, and snippets.

View GenertP's full-sized avatar

SomeBodyNoBody GenertP

View GitHub Profile
@GenertP
GenertP / discord_lootboxes.py
Created April 1, 2024 18:53 — forked from EricPanDev/discord_lootboxes.py
Automatically open discord lootboxes
token = input("Copy and paste user token: ")
import requests, json, base64, time
X_Super = {"client_build_number":280346}
headers = {
'authorization': token,
'x-super-properties': base64.b64encode(json.dumps(X_Super).encode('utf-8')).decode('utf-8'),
}