Skip to content

Instantly share code, notes, and snippets.

@LegitZenith
Last active August 12, 2023 19:19
Show Gist options
  • Save LegitZenith/efb6d3a4f81cfdb16f8c474b9b264f66 to your computer and use it in GitHub Desktop.
Save LegitZenith/efb6d3a4f81cfdb16f8c474b9b264f66 to your computer and use it in GitHub Desktop.
DISCORD TOKEN LOGIN (WORKS IN CONSOLE)
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