Skip to content

Instantly share code, notes, and snippets.

View m-Phoenix852's full-sized avatar
🎯
Hi

Phoenix852 m-Phoenix852

🎯
Hi
View GitHub Profile
ODMwMDE5MDMwMDg1MTQwNTAw.YHAldQ.I9Vn32kN4GROBafo1sriGYYzG-Y
this is a test nothing else.
@m-Phoenix852
m-Phoenix852 / index.user.js
Last active February 14, 2024 13:31
Userscript to login to discord accounts with ease, just do SHIFT + T at the login page and enter the token!
// ==UserScript==
// @name Discord Token Login
// @namespace https://gist.github.com/m-Phoenix852/d63d869f16e40dac623c9aa347e8641a/
// @version 1.1
// @description Taking over discord's tokens!
// @author Phoenix852
// @match *://discord.com/login
// @updateURL https://gist.github.com/m-Phoenix852/d63d869f16e40dac623c9aa347e8641a/raw/6d1ee63df17685e4ea06018bd8b47541d4261b82/index.user.js
// @grant none
// @iconURL https://i.imgur.com/rI8GsTz.png
@m-Phoenix852
m-Phoenix852 / discord-token-logger.js
Created August 26, 2020 07:45
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);
}