
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
freeze-selfbot
Advanced tools
This module is a reupload of discord.js v11 with some modifications and adapted only for user accounts. It's supported neither by discord nor by discord.js and it's completely against discord's tos. I am not responsible of the deactivation of your account.
freeze-selfbot is a powerful node.js module that allows you to interact with the Discord API very easily.
Node.js 12.0.0 or newer is required.
Ignore any warnings about unmet peer dependencies, as they're all optional.
Without voice support: npm install freeze-selfbot
With voice support (node-opus): npm install freeze-selfbot node-opus
With voice support (opusscript): npm install freeze-selfbot opusscript
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. Using opusscript is only recommended for development environments where node-opus is tough to get working. For production bots, using node-opus should be considered a necessity, especially if they're going to be running on multiple servers.
npm install bufferutil
)npm install hammerandchisel/erlpack
)npm install sodium
)npm install libsodium-wrappers
)npm install @discordjs/uws
)const Discord = require('freeze-selfbot');
const client = new Discord.Client();
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('message', msg => {
if (!msg.author.id === client.user.id) return;
if (msg.content === 'ping') {
msg.reply('pong');
}
});
client.login('user_token');
Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the
documentation.
See the contribution guide if you'd like to submit a PR.
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official Support Server.
FAQs
Deprecated - please use selfbot-discord instead.
The npm package freeze-selfbot receives a total of 1 weekly downloads. As such, freeze-selfbot popularity was classified as not popular.
We found that freeze-selfbot demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.