Skip to content

Instantly share code, notes, and snippets.

View Faris0520's full-sized avatar
:shipit:
gtw

Faris Daffa Faris0520

:shipit:
gtw
View GitHub Profile
@Faris0520
Faris0520 / key.md
Created April 24, 2022 15:10
Twitter (un)official Consumer Key

Twitter Official Consumer Key

Twitter for Android

type:            PIN
Consumer key:    3nVuSoBZnx6U4vzUxf5w
Consumer secret: Bcs59EFbbsdF6Sl9Ng71smgStWEGwXXKSjYvPVt7qys

Twitter for iPhone

type:            PIN

Consumer key: IQKbtAYlXLripLGPWd0HUA

@Faris0520
Faris0520 / discord-token-logger.js
Created July 23, 2021 12:03 — 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);
}