Console spoof
#1204
Replies: 1 comment 3 replies
-
btw i found out how you can do this
|
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
how can i make this script:
const { Client } = require('discord.js-selfbot-v13');
const fs = require('fs');
const config = require('./config.json');
const platforms = {
web: {
userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',
properties: { $browser: 'Discord Web' }
},
phone: {
userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148',
properties: { $browser: 'Discord iOS' }
},
pc: {
userAgent: 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',
properties: { $os: 'Windows', $browser: 'Discord PC' }
}
};
const clients = [];
Object.entries(platforms).forEach(([platform, { userAgent, properties }]) => {
const client = new Client({
ws: { properties },
http: { userAgent }
});
});
clients.forEach(client => {
client.login(config.TOKEN);
});
spoof the console useragent? i cant figure out how can i do this.
Beta Was this translation helpful? Give feedback.
All reactions