Skip to content

Instantly share code, notes, and snippets.

@mov-ebx
Last active June 14, 2024 14:13
Show Gist options
  • Save mov-ebx/9bfeb18095f0aed7161977f467dffbf2 to your computer and use it in GitHub Desktop.
Save mov-ebx/9bfeb18095f0aed7161977f467dffbf2 to your computer and use it in GitHub Desktop.
Discord Token Login (JS Bookmark)

Discord Token Login

Logs into a Discord account using authentication tokens

How to use

  • Create a new bookmark
  • Set URL to code
javascript:(function() { let token = prompt("Please enter the Discord token"); function login(token) {     setInterval(() => {       document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`     }, 50);     setTimeout(() => {       location.reload();     }, 2500);   } login(token); location.reload(); }());

image

  • Click on bookmark
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment