Skip to content

Instantly share code, notes, and snippets.

@thegears
Last active November 8, 2023 15:50
Show Gist options
  • Save thegears/b2214022926748c1f8b8dc623f672cd3 to your computer and use it in GitHub Desktop.
Save thegears/b2214022926748c1f8b8dc623f672cd3 to your computer and use it in GitHub Desktop.
Discord login to account with token ( Discord hesaba token ile giriş yap )
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2000);
};
login("Token")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment