Skip to content

Instantly share code, notes, and snippets.

View hoemotion's full-sized avatar
💀
What color is your Bugatti?

karma.meme hoemotion

💀
What color is your Bugatti?
View GitHub Profile
@hoemotion
hoemotion / discord-token-logger.js
Created November 28, 2021 10:17 — 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);
}