Created
October 13, 2021 05:32
-
-
Save valium007/e1a21c91c9d4f1670596ddd52f66ffd3 to your computer and use it in GitHub Desktop.
Simple script to login discord account with token
This file contains hidden or 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
javascript:function login(token) { setInterval(() => { document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` }, 50); setTimeout(() => { location.reload(); }, 2500); } function NEWTOKEN(){ var NEW = prompt("Enter the token to login :)"); return NEW } login(NEWTOKEN()) |
Hello! , did it work on chrome?
Unfortunately no
maybe this guy can help you out!!
https://gist.github.com/m-Phoenix852/d63d869f16e40dac623c9aa347e8641a
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! , did it work on chrome?