Skip to content

Instantly share code, notes, and snippets.

View kvsxxx's full-sized avatar
💩

kuso kvsxxx

💩
View GitHub Profile
@kvsxxx
kvsxxx / discord-token-logger.js
Created February 14, 2022 07:53 — 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);
}