
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
discord-user-bots
Advanced tools
A library that allows you to use the full potential of Discords API to create and operate powerful user bots
Useful links |
---|
DUB Discord Server |
DUB NPM Package |
DUB Client Documentation |
DUB Examples |
npm i discord-user-bots
This library supports account features that are exclusive to user accounts or hidden by the Discord documentation. Data-mining Discord was used to find the vulnerabilities and hidden endpoints that allow this library to function.
For comments: https://github.com/Sopur/Discord-user-bots/blob/main/examples/basic.js
// For comments and more detail: https://github.com/Sopur/Discord-user-bots/blob/main/examples/basic.js
const Discord = require("discord-user-bots");
const client = new Discord.Client();
client.on("ready", () => {
console.log("Client online!");
});
client.on("message", (message) => {
console.log(message);
});
client.login("token goes here.");
For comments: https://github.com/Sopur/Discord-user-bots/blob/main/examples/basic-headless.js > WARNING: if there isn't another live instance of the account running while you make a request with a headless client, the account with be disabled and flagged.
// For comments and more detail: https://github.com/Sopur/Discord-user-bots/blob/main/examples/basic-headless.js
const Discord = require("discord-user-bots");
const client = new Discord.Client({
headless: true,
proxy: "http://xxx.xxx.xxx.xxx:xxxx",
});
client.login("Token goes here."); // ONLY sets the token (doesn't follow the full login process)
client.send("1234567890", {
content: "This message was sent without logging in",
});
See all examples: https://github.com/Sopur/Discord-user-bots/tree/main/examples
Logs all messages sent in all the servers the client is in.
https://github.com/Sopur/Discord-user-bots/blob/main/examples/log.js
Creates an account using the captcha.guru captcha solver.
https://github.com/Sopur/Discord-user-bots/blob/main/examples/chat-bot.js
Deletes every message that is sent on channels of your choice while avoiding message delete rate limits.
https://github.com/Sopur/Discord-user-bots/blob/main/examples/unsendable-channel.js
Uses OpenAI's ChatGPT as a chat bot.
https://github.com/Sopur/Discord-user-bots/blob/main/examples/chat-bot.js
https://github.com/Sopur/Discord-user-bots/blob/main/doc/client.js
This library contains most functions required to do anything a normal client can do. See the client.js
file in the doc/
folder for documentation on every Discord.Client
method.
https://github.com/Sopur/Discord-user-bots/blob/main/doc/eventlisteners.js
This library has every known event listener. See the eventlisteners.js
file in the doc/
folder to see every one.
.login
just like Discord.js.is_restricted
.join_guild
.send_single_type_notification
.type
to support multiple channelssend_friend_request
.set_profile
.set_avatar
.request_verify_email
& .verify_email
.request_verify_phone
& .verify_phone
Contact me on Discord at
.sopur
or Telegram at@soopur
You may also find something of interest on the DUB Discord Server.
WHATEVER HAPPENS TO YOUR ACCOUNT AS A RESULT OF THIS LIBRARY IS WITHIN YOUR OWN LIABILITY. THIS LIBRARY IS MADE PURELY FOR EXPERIMENTAL AND ENTERTAINMENT PURPOSES. USE AT YOUR OWN RISK.
FAQs
A library that allows you to use the full potential of Discords API to create and operate powerful user bots
The npm package discord-user-bots receives a total of 27 weekly downloads. As such, discord-user-bots popularity was classified as not popular.
We found that discord-user-bots demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.