2022-05-03 05:29:10 +00:00
|
|
|
'use strict';
|
|
|
|
const { Buffer } = require('buffer');
|
|
|
|
const crypto = require('crypto');
|
2022-07-07 17:23:41 +00:00
|
|
|
const EventEmitter = require('node:events');
|
2022-08-18 13:04:00 +00:00
|
|
|
const { setTimeout } = require('node:timers');
|
2022-05-03 05:29:10 +00:00
|
|
|
const { StringDecoder } = require('string_decoder');
|
2022-08-20 13:27:34 +00:00
|
|
|
const axios = require('axios');
|
2022-08-19 11:50:46 +00:00
|
|
|
const chalk = require('chalk');
|
2022-05-03 05:29:10 +00:00
|
|
|
const { encode: urlsafe_b64encode } = require('safe-base64');
|
|
|
|
const WebSocket = require('ws');
|
|
|
|
const { randomUA } = require('./Constants');
|
2022-08-20 13:27:34 +00:00
|
|
|
const Options = require('./Options');
|
|
|
|
|
|
|
|
const defaultClientOptions = Options.createDefault();
|
2022-08-18 13:04:00 +00:00
|
|
|
|
|
|
|
const baseURL = 'https://discord.com/ra/';
|
|
|
|
|
|
|
|
const wsURL = 'wss://remote-auth-gateway.discord.gg/?v=2';
|
|
|
|
|
|
|
|
const receiveEvent = {
|
2022-05-03 05:29:10 +00:00
|
|
|
HELLO: 'hello',
|
|
|
|
NONCE_PROOF: 'nonce_proof',
|
|
|
|
PENDING_REMOTE_INIT: 'pending_remote_init',
|
2022-08-18 13:04:00 +00:00
|
|
|
HEARTBEAT_ACK: 'heartbeat_ack',
|
|
|
|
PENDING_LOGIN: 'pending_ticket',
|
2022-05-03 05:29:10 +00:00
|
|
|
CANCEL: 'cancel',
|
2022-08-18 13:04:00 +00:00
|
|
|
SUCCESS: 'pending_login',
|
2022-05-03 05:29:10 +00:00
|
|
|
};
|
|
|
|
|
2022-08-18 13:04:00 +00:00
|
|
|
const sendEvent = {
|
|
|
|
INIT: 'init',
|
|
|
|
NONCE_PROOF: 'nonce_proof',
|
|
|
|
HEARTBEAT: 'heartbeat',
|
|
|
|
};
|
|
|
|
|
|
|
|
const Event = {
|
|
|
|
READY: 'ready',
|
|
|
|
ERROR: 'error',
|
|
|
|
CANCEL: 'cancel',
|
|
|
|
WAIT: 'pending',
|
2022-08-20 13:27:34 +00:00
|
|
|
SUCCESS: 'success',
|
2022-08-18 13:04:00 +00:00
|
|
|
FINISH: 'finish',
|
|
|
|
CLOSED: 'closed',
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {Object} DiscordAuthWebsocketOptions
|
|
|
|
* @property {?boolean} [debug=false] Log debug info
|
|
|
|
* @property {?boolean} [hiddenLog=false] Hide log ?
|
|
|
|
* @property {?boolean} [autoLogin=false] Automatically login (DiscordJS.Client Login) ?
|
|
|
|
* @property {?boolean} [failIfError=true] Throw error ?
|
|
|
|
* @property {?boolean} [generateQR=true] Create QR Code ?
|
2022-08-20 13:27:34 +00:00
|
|
|
* @property {?number} [apiVersion=9] API Version
|
2022-10-25 23:59:19 +00:00
|
|
|
* @property {?string} [userAgent] User Agent
|
|
|
|
* @property {?Object.<string,string>} [wsProperties] Web Socket Properties
|
2022-08-18 13:04:00 +00:00
|
|
|
*/
|
2022-05-03 05:29:10 +00:00
|
|
|
|
2022-07-07 17:23:41 +00:00
|
|
|
/**
|
2022-07-10 12:28:47 +00:00
|
|
|
* Discord Auth QR (Discord.RemoteAuth will be removed in the future, v13.9.0 release)
|
2022-07-07 17:23:41 +00:00
|
|
|
* @extends {EventEmitter}
|
|
|
|
* @abstract
|
|
|
|
*/
|
|
|
|
class DiscordAuthWebsocket extends EventEmitter {
|
|
|
|
/**
|
|
|
|
* Creates a new DiscordAuthWebsocket instance.
|
2022-08-18 13:04:00 +00:00
|
|
|
* @param {?DiscordAuthWebsocketOptions} options Options
|
2022-07-07 17:23:41 +00:00
|
|
|
*/
|
2022-08-18 13:04:00 +00:00
|
|
|
constructor(options) {
|
2022-07-07 17:23:41 +00:00
|
|
|
super();
|
2022-08-06 12:38:36 +00:00
|
|
|
/**
|
2022-08-18 13:04:00 +00:00
|
|
|
* WebSocket
|
|
|
|
* @type {?WebSocket}
|
2022-08-06 12:38:36 +00:00
|
|
|
*/
|
2022-08-18 13:04:00 +00:00
|
|
|
this.ws = null;
|
2022-08-06 12:38:36 +00:00
|
|
|
/**
|
2022-08-18 13:04:00 +00:00
|
|
|
* Heartbeat Interval
|
|
|
|
* @type {?number}
|
2022-08-06 12:38:36 +00:00
|
|
|
*/
|
2022-08-18 13:04:00 +00:00
|
|
|
this.heartbeatInterval = NaN;
|
|
|
|
this._expire = NaN;
|
|
|
|
this.key = null;
|
2022-07-07 17:23:41 +00:00
|
|
|
/**
|
2022-08-18 13:04:00 +00:00
|
|
|
* User (Scan QR Code)
|
|
|
|
* @type {?Object}
|
2022-07-07 17:23:41 +00:00
|
|
|
*/
|
2022-05-03 05:29:10 +00:00
|
|
|
this.user = null;
|
2022-07-07 17:23:41 +00:00
|
|
|
/**
|
2022-08-20 13:27:34 +00:00
|
|
|
* Temporary Token (Scan QR Code)
|
2022-07-07 17:23:41 +00:00
|
|
|
* @type {?string}
|
|
|
|
*/
|
2022-08-18 13:04:00 +00:00
|
|
|
this.token = undefined;
|
2022-08-20 13:27:34 +00:00
|
|
|
/**
|
|
|
|
* Real Token (Login)
|
|
|
|
* @type {?string}
|
|
|
|
*/
|
|
|
|
this.realToken = undefined;
|
2022-07-07 17:23:41 +00:00
|
|
|
/**
|
2022-08-18 13:04:00 +00:00
|
|
|
* Fingerprint (QR Code)
|
2022-07-07 17:23:41 +00:00
|
|
|
* @type {?string}
|
|
|
|
*/
|
2022-08-18 13:04:00 +00:00
|
|
|
this.fingerprint = null;
|
|
|
|
this._validateOptions(options);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Get expire time
|
|
|
|
* @type {string} Expire time
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
get exprireTime() {
|
|
|
|
return this._expire.toLocaleString('en-US');
|
|
|
|
}
|
|
|
|
_validateOptions(options = {}) {
|
|
|
|
/**
|
|
|
|
* Options
|
|
|
|
* @type {?DiscordAuthWebsocketOptions}
|
|
|
|
*/
|
|
|
|
this.options = {
|
|
|
|
debug: false,
|
|
|
|
hiddenLog: false,
|
|
|
|
autoLogin: false,
|
|
|
|
failIfError: true,
|
|
|
|
generateQR: true,
|
2022-08-20 13:27:34 +00:00
|
|
|
apiVersion: 9,
|
2022-10-25 23:59:19 +00:00
|
|
|
userAgent: randomUA(),
|
|
|
|
wsProperties: defaultClientOptions.ws.properties,
|
2022-08-18 13:04:00 +00:00
|
|
|
};
|
|
|
|
if (typeof options == 'object') {
|
|
|
|
if (typeof options.debug == 'boolean') this.options.debug = options.debug;
|
|
|
|
if (typeof options.hiddenLog == 'boolean') this.options.hiddenLog = options.hiddenLog;
|
|
|
|
if (typeof options.autoLogin == 'boolean') this.options.autoLogin = options.autoLogin;
|
|
|
|
if (typeof options.failIfError == 'boolean') this.options.failIfError = options.failIfError;
|
|
|
|
if (typeof options.generateQR == 'boolean') this.options.generateQR = options.generateQR;
|
2022-08-20 13:27:34 +00:00
|
|
|
if (typeof options.apiVersion == 'number') this.options.apiVersion = options.apiVersion;
|
2022-10-25 23:59:19 +00:00
|
|
|
if (typeof options.userAgent == 'string') this.options.userAgent = options.userAgent;
|
|
|
|
if (typeof options.wsProperties == 'object') this.options.wsProperties = options.wsProperties;
|
2022-08-18 13:04:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_createWebSocket(url) {
|
|
|
|
this.ws = new WebSocket(url, {
|
|
|
|
headers: {
|
|
|
|
Origin: 'https://discord.com',
|
2022-10-25 23:59:19 +00:00
|
|
|
'User-Agent': this.options.userAgent,
|
2022-08-18 13:04:00 +00:00
|
|
|
},
|
|
|
|
});
|
|
|
|
this._handleWebSocket();
|
|
|
|
}
|
|
|
|
_handleWebSocket() {
|
2022-05-03 05:29:10 +00:00
|
|
|
this.ws.on('error', error => {
|
2022-08-18 13:04:00 +00:00
|
|
|
this._logger('error', error);
|
2022-05-03 05:29:10 +00:00
|
|
|
});
|
|
|
|
this.ws.on('open', () => {
|
2022-08-18 13:04:00 +00:00
|
|
|
this._logger('debug', 'Client Connected');
|
|
|
|
});
|
|
|
|
this.ws.on('close', () => {
|
|
|
|
this._logger('debug', 'Connection closed.');
|
2022-05-03 05:29:10 +00:00
|
|
|
});
|
|
|
|
this.ws.on('message', message => {
|
2022-08-18 13:04:00 +00:00
|
|
|
this._handleMessage(JSON.parse(message));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
_handleMessage(message) {
|
|
|
|
switch (message.op) {
|
|
|
|
case receiveEvent.HELLO: {
|
|
|
|
this._ready(message);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case receiveEvent.NONCE_PROOF: {
|
|
|
|
this._receiveNonceProof(message);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case receiveEvent.PENDING_REMOTE_INIT: {
|
|
|
|
this._pendingRemoteInit(message);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case receiveEvent.HEARTBEAT_ACK: {
|
|
|
|
this._logger('debug', 'Heartbeat acknowledged.');
|
|
|
|
this._heartbeatAck();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case receiveEvent.PENDING_LOGIN: {
|
|
|
|
this._pendingLogin(message);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case receiveEvent.CANCEL: {
|
|
|
|
this._logger('debug', 'Cancel login.');
|
2022-07-11 08:04:07 +00:00
|
|
|
/**
|
2022-08-18 13:04:00 +00:00
|
|
|
* Emitted whenever a user cancels the login process.
|
|
|
|
* @event DiscordAuthWebsocket#cancel
|
|
|
|
* @param {object} user User (Raw)
|
2022-07-11 08:04:07 +00:00
|
|
|
*/
|
2022-08-18 13:04:00 +00:00
|
|
|
this.emit(Event.CANCEL, this.user);
|
|
|
|
this.destroy();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case receiveEvent.SUCCESS: {
|
|
|
|
this._logger('debug', 'Receive Token - Login Success.', message.ticket);
|
2022-07-07 17:23:41 +00:00
|
|
|
/**
|
2022-08-20 13:27:34 +00:00
|
|
|
* Emitted whenever a token is created. (Fake token)
|
|
|
|
* @event DiscordAuthWebsocket#success
|
2022-08-18 13:04:00 +00:00
|
|
|
* @param {object} user Discord User
|
2022-08-20 13:27:34 +00:00
|
|
|
* @param {string} token Discord Token (Fake)
|
2022-07-07 17:23:41 +00:00
|
|
|
*/
|
2022-08-20 13:27:34 +00:00
|
|
|
this.emit(Event.SUCCESS, this.user, message.ticket);
|
2022-08-18 13:04:00 +00:00
|
|
|
this.token = message.ticket;
|
2022-08-20 13:27:34 +00:00
|
|
|
this._findRealToken();
|
2022-08-18 13:04:00 +00:00
|
|
|
break;
|
2022-05-03 05:29:10 +00:00
|
|
|
}
|
2022-08-18 13:04:00 +00:00
|
|
|
default: {
|
|
|
|
this._logger('debug', `Unknown op: ${message.op}`, message);
|
2022-05-03 05:29:10 +00:00
|
|
|
}
|
2022-08-18 13:04:00 +00:00
|
|
|
}
|
2022-05-03 05:29:10 +00:00
|
|
|
}
|
2022-08-18 13:04:00 +00:00
|
|
|
_logger(type = 'default', ...message) {
|
|
|
|
if (this.options.hiddenLog) return;
|
|
|
|
switch (type.toLowerCase()) {
|
|
|
|
case 'error': {
|
|
|
|
// eslint-disable-next-line no-unused-expressions
|
|
|
|
this.options.failIfError
|
|
|
|
? this._throwError(new Error(message[0]))
|
2022-08-19 11:50:46 +00:00
|
|
|
: console.error(chalk.red(`[DiscordRemoteAuth] ERROR`), ...message);
|
2022-08-18 13:04:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'default': {
|
2022-08-19 11:50:46 +00:00
|
|
|
console.log(chalk.green(`[DiscordRemoteAuth]`), ...message);
|
2022-08-18 13:04:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'debug': {
|
2022-08-19 11:50:46 +00:00
|
|
|
if (this.options.debug) console.log(chalk.yellow(`[DiscordRemoteAuth] DEBUG`), ...message);
|
2022-08-18 13:04:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-05-03 05:29:10 +00:00
|
|
|
}
|
|
|
|
}
|
2022-08-18 13:04:00 +00:00
|
|
|
_throwError(error) {
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
_send(op, data) {
|
|
|
|
if (!this.ws) this._throwError(new Error('WebSocket is not connected.'));
|
|
|
|
let payload = { op: op };
|
|
|
|
if (data !== null) payload = { ...payload, ...data };
|
|
|
|
this._logger('debug', `Send Data:`, payload);
|
|
|
|
this.ws.send(JSON.stringify(payload));
|
|
|
|
}
|
|
|
|
_heartbeat() {
|
|
|
|
this._send(sendEvent.HEARTBEAT);
|
|
|
|
}
|
|
|
|
_heartbeatAck() {
|
|
|
|
setTimeout(() => {
|
|
|
|
this._heartbeat();
|
|
|
|
}, this.heartbeatInterval);
|
|
|
|
}
|
|
|
|
_ready(data) {
|
|
|
|
this._logger('debug', 'Attempting server handshake...');
|
|
|
|
this._expire = new Date(Date.now() + data.timeout_ms);
|
|
|
|
this.heartbeatInterval = data.heartbeat_interval;
|
|
|
|
this._createKey();
|
|
|
|
this._heartbeatAck();
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
_createKey() {
|
|
|
|
if (this.key) this._throwError(new Error('Key is already created.'));
|
|
|
|
this.key = crypto.generateKeyPairSync('rsa', {
|
|
|
|
modulusLength: 2048,
|
|
|
|
publicKeyEncoding: {
|
|
|
|
type: 'spki',
|
|
|
|
format: 'pem',
|
|
|
|
},
|
|
|
|
privateKeyEncoding: {
|
|
|
|
type: 'pkcs1',
|
|
|
|
format: 'pem',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
_createPublicKey() {
|
|
|
|
if (!this.key) this._throwError(new Error('Key is not created.'));
|
|
|
|
this._logger('debug', 'Generating public key...');
|
2022-05-03 05:29:10 +00:00
|
|
|
const decoder = new StringDecoder('utf-8');
|
2022-08-18 13:04:00 +00:00
|
|
|
let pub_key = decoder.write(this.key.publicKey);
|
2022-05-03 05:29:10 +00:00
|
|
|
pub_key = pub_key.split('\n').slice(1, -2).join('');
|
2022-08-18 13:04:00 +00:00
|
|
|
this._logger('debug', 'Public key generated.', pub_key);
|
2022-05-03 05:29:10 +00:00
|
|
|
return pub_key;
|
|
|
|
}
|
2022-08-18 13:04:00 +00:00
|
|
|
_init() {
|
|
|
|
const public_key = this._createPublicKey();
|
|
|
|
this._send(sendEvent.INIT, { encoded_public_key: public_key });
|
2022-05-03 05:29:10 +00:00
|
|
|
}
|
2022-08-18 13:04:00 +00:00
|
|
|
_receiveNonceProof(data) {
|
|
|
|
const nonce = data.encrypted_nonce;
|
|
|
|
const decrypted_nonce = this._decryptPayload(nonce);
|
|
|
|
let proof = crypto.createHash('sha256').update(decrypted_nonce).digest();
|
|
|
|
proof = urlsafe_b64encode(proof);
|
|
|
|
proof = proof.replace(/\s+$/, '');
|
|
|
|
this._send(sendEvent.NONCE_PROOF, { proof: proof });
|
|
|
|
this._logger('debug', `Nonce proof decrypted:`, proof);
|
2022-05-03 05:29:10 +00:00
|
|
|
}
|
2022-08-18 13:04:00 +00:00
|
|
|
_decryptPayload(encrypted_payload) {
|
|
|
|
if (!this.key) this._throwError(new Error('Key is not created.'));
|
|
|
|
const payload = Buffer.from(encrypted_payload, 'base64');
|
|
|
|
this._logger('debug', `Encrypted Payload (Buffer):`, payload);
|
2022-05-03 05:29:10 +00:00
|
|
|
const decoder = new StringDecoder('utf-8');
|
2022-08-18 13:04:00 +00:00
|
|
|
const private_key = decoder.write(this.key.privateKey);
|
|
|
|
const data = crypto.privateDecrypt(
|
2022-05-03 05:29:10 +00:00
|
|
|
{
|
|
|
|
key: private_key,
|
|
|
|
padding: crypto.constants.RSA_PKCS1_OAEP_PADDING,
|
|
|
|
oaepHash: 'sha256',
|
|
|
|
},
|
|
|
|
payload,
|
|
|
|
);
|
2022-08-18 13:04:00 +00:00
|
|
|
this._logger('debug', `Decrypted Payload:`, data.toString());
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
_pendingLogin(data) {
|
|
|
|
const user_data = this._decryptPayload(data.encrypted_user_payload);
|
|
|
|
const user = new User(user_data.toString());
|
|
|
|
this.user = user;
|
|
|
|
/**
|
|
|
|
* Emitted whenever a user is scan QR Code.
|
|
|
|
* @event DiscordAuthWebsocket#pending
|
|
|
|
* @param {object} user Discord User Raw
|
|
|
|
*/
|
|
|
|
this.emit(Event.WAIT, user);
|
|
|
|
this._logger('debug', 'Waiting for user to finish login...');
|
|
|
|
this.user.prettyPrint(this);
|
|
|
|
this._logger('default', 'Please check your phone again to confirm login.');
|
|
|
|
}
|
|
|
|
_pendingRemoteInit(data) {
|
|
|
|
this._logger('debug', `Pending Remote Init:`, data);
|
|
|
|
/**
|
|
|
|
* Emitted whenever a url is created.
|
|
|
|
* @event DiscordAuthWebsocket#ready
|
|
|
|
* @param {string} fingerprint Fingerprint
|
|
|
|
* @param {string} url DiscordAuthWebsocket
|
|
|
|
*/
|
|
|
|
this.emit(Event.READY, data.fingerprint, `${baseURL}${data.fingerprint}`);
|
|
|
|
this.fingerprint = data.fingerprint;
|
|
|
|
if (this.options.generateQR) this.generateQR();
|
|
|
|
}
|
|
|
|
_awaitLogin(client) {
|
|
|
|
this.once(Event.FINISH, (user, token) => {
|
|
|
|
this._logger('debug', 'Create login state...', user, token);
|
|
|
|
client.login(token);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Connect to DiscordAuthWebsocket.
|
|
|
|
* @param {?Client} client Using only for auto login.
|
|
|
|
* @returns {undefined}
|
|
|
|
*/
|
|
|
|
connect(client) {
|
|
|
|
this._createWebSocket(wsURL);
|
|
|
|
if (client && this.options.autoLogin) this._awaitLogin(client);
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Disconnect from DiscordAuthWebsocket.
|
|
|
|
* @returns {undefined}
|
|
|
|
*/
|
|
|
|
destroy() {
|
|
|
|
if (!this.ws) this._throwError(new Error('WebSocket is not connected.'));
|
|
|
|
this.ws.close();
|
|
|
|
/**
|
|
|
|
* Emitted whenever a connection is closed.
|
|
|
|
* @event DiscordAuthWebsocket#closed
|
|
|
|
* @param {boolean} loginState Login state
|
|
|
|
*/
|
|
|
|
this.emit(Event.CLOSED, this.token);
|
|
|
|
this._logger('debug', 'WebSocket closed.');
|
2022-05-03 05:29:10 +00:00
|
|
|
}
|
2022-07-07 17:23:41 +00:00
|
|
|
/**
|
|
|
|
* Generate QR code for user to scan (Terminal)
|
2022-08-18 13:04:00 +00:00
|
|
|
* @returns {undefined}
|
2022-07-07 17:23:41 +00:00
|
|
|
*/
|
2022-08-18 13:04:00 +00:00
|
|
|
generateQR() {
|
|
|
|
if (!this.fingerprint) this._throwError(new Error('Fingerprint is not created.'));
|
|
|
|
if (this.options.generateQR) {
|
|
|
|
require('@aikochan2k6/qrcode-terminal').generate(`${baseURL}${this.fingerprint}`, {
|
|
|
|
small: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
this._logger('default', `Please scan the QR code to continue.\nQR Code will expire in ${this.exprireTime}`);
|
|
|
|
}
|
2022-08-20 13:27:34 +00:00
|
|
|
|
|
|
|
async _findRealToken() {
|
|
|
|
if (!this.token) this._throwError(new Error('Token is not created.'));
|
|
|
|
const res = await axios.post(
|
|
|
|
`https://discord.com/api/v${this.options.apiVersion}/users/@me/remote-auth/login`,
|
|
|
|
{
|
|
|
|
ticket: this.token,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
headers: {
|
|
|
|
Accept: '*/*',
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Accept-Language': 'en-US,en;q=0.9',
|
|
|
|
'Cache-Control': 'no-cache',
|
|
|
|
Pragma: 'no-cache',
|
|
|
|
'Sec-Fetch-Dest': 'empty',
|
|
|
|
'Sec-Fetch-Mode': 'cors',
|
|
|
|
'Sec-Fetch-Site': 'same-origin',
|
|
|
|
'X-Debug-Options': 'bugReporterEnabled',
|
2022-10-25 23:59:19 +00:00
|
|
|
'X-Super-Properties': `${Buffer.from(JSON.stringify(this.options.wsProperties), 'ascii').toString('base64')}`,
|
2022-08-20 13:27:34 +00:00
|
|
|
'X-Discord-Locale': 'en-US',
|
2022-10-25 23:59:19 +00:00
|
|
|
'User-Agent': this.options.userAgent,
|
2022-08-20 13:27:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
);
|
|
|
|
this._logger('debug', 'Find real token...', res.data);
|
|
|
|
this.realToken = this._decryptPayload(res.data.encrypted_token).toString();
|
|
|
|
/**
|
|
|
|
* Emitted whenever a real token is found.
|
|
|
|
* @event DiscordAuthWebsocket#finish
|
|
|
|
* @param {object} user User
|
|
|
|
* @param {string} token Real token
|
|
|
|
*/
|
|
|
|
this.emit(Event.FINISH, this.user, this.realToken);
|
|
|
|
}
|
2022-08-18 13:04:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class User {
|
|
|
|
constructor(payload) {
|
|
|
|
const values = payload.split(':');
|
|
|
|
this.id = values[0];
|
|
|
|
this.username = values[3];
|
|
|
|
this.discriminator = values[1];
|
|
|
|
this.avatar = values[2];
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
get avatarURL() {
|
|
|
|
return `https://cdn.discordapp.com/avatars/${this.id}/${this.avatar}.${
|
|
|
|
this.avatar.startsWith('a_') ? 'gif' : 'png'
|
|
|
|
}`;
|
|
|
|
}
|
|
|
|
get tag() {
|
|
|
|
return `${this.username}#${this.discriminator}`;
|
|
|
|
}
|
|
|
|
prettyPrint(RemoteAuth) {
|
|
|
|
let string = `\n`;
|
2022-08-19 11:50:46 +00:00
|
|
|
string += ` ${chalk.bgBlue('User:')} `;
|
2022-08-18 13:04:00 +00:00
|
|
|
string += `${this.tag} (${this.id})\n`;
|
2022-08-19 11:50:46 +00:00
|
|
|
string += ` ${chalk.bgGreen('Avatar URL:')} `;
|
|
|
|
string += chalk.cyan(`${this.avatarURL}\n`);
|
|
|
|
string += ` ${chalk.bgMagenta('Token:')} `;
|
|
|
|
string += chalk.red(`${this.token ? this.token : 'Unknown'}`);
|
2022-08-18 13:04:00 +00:00
|
|
|
RemoteAuth._logger('default', string);
|
2022-05-03 05:29:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = DiscordAuthWebsocket;
|