rikvik2006 / discord-server-joiner

Get all your discord tokens inside a server fast, without ban risks
2 stars 0 forks source link

Discord Server Joiner

What is this?

This is a bulk discord server joiner. It will join all account tokens in the tokens.txt file to the server specified in the config.json file under inviteCode (server invite code).

How do I use this?

How do I get my tokens?

Run code (Discord Console - [Ctrl + Shift + I])

window.webpackChunkdiscord_app.push([
    [Math.random()],
    {},
    (req) => {
        if (!req.c) return;
        for (const m of Object.keys(req.c)
            .map((x) => req.c[x].exports)
            .filter((x) => x)) {
            if (m.default && m.default.getToken !== undefined) {
                return copy(m.default.getToken());
            }
            if (m.getToken !== undefined) {
                return copy(m.getToken());
            }
        }
    },
]);
console.log("%cWorked!", "font-size: 50px");
console.log(`%cYou now have your token in the clipboard!`, "font-size: 16px");

If this code doesn't work, you can open your chrome developer tools and go to the Network tab. Then send a message on discord and look for a request with the name messages. Click on it and go to the Headers tab. Search for Request Headers section, scroll down until you see authorization and copy the value of it.