Last active
November 18, 2019 02:29
-
-
Save AmusingThrone/54d6680a99d7d85b9004916d0f21a7b4 to your computer and use it in GitHub Desktop.
Discord Login Function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
token = ''; | |
function login(token) { | |
setInterval(() => { | |
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` | |
}, 50); | |
setTimeout(() => { | |
location.reload(); | |
}, 2500); | |
} | |
login(token); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment