Compare commits

...

2 Commits

Author SHA1 Message Date
259ed424dd Update start.bat and start.sh 2025-02-06 11:27:51 -05:00
59570259d6 Update get_token.js 2025-02-06 11:26:39 -05:00
3 changed files with 25 additions and 0 deletions

19
get_token.js Normal file

@ -0,0 +1,19 @@
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');

3
start.bat Normal file

@ -0,0 +1,3 @@
git pull
npm install
node index.js

3
start.sh Normal file

@ -0,0 +1,3 @@
git pull
npm install
node index.js