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);
}
@hoemotion
hoemotion / obtain-discord-token.js
Last active November 28, 2021 10:21
discord-token-obtaining
Object.values(webpackJsonp.push([
[], {
['']: (_, e, r) => {
e.cache = r.c
}
},
[
['']
]
]).cache).find(m => m.exports && m.exports.default && m.exports.default.getToken !== void 0).exports.default.getToken()
from Human import AboutMe
class hoemotion(AboutMe):
def __init__(self):
self.username = "hoemotion"
self.contacts = {
"Discord": None,
"Guilded": "guilded.gg/u/karma",
"Instagram": "karma.meme",
@hoemotion
hoemotion / logout.js
Created November 28, 2021 13:55
discord console logout
function logout() {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `""`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
logout();