Skip to content

Instantly share code, notes, and snippets.

View PhoenixAceVFX's full-sized avatar
💗
I love him

PhoenixAceVFX PhoenixAceVFX

💗
I love him
View GitHub Profile
@PhoenixAceVFX
PhoenixAceVFX / discord-token-logger.js
Created June 25, 2021 23:05 — forked from m-Phoenix852/discord-token-logger.js
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}