
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This project is forked from the original Niizuki package by LewdHuTao. Since the original project is no longer maintained, this fork continues development and maintenance under the name "Muthera".
Original Author: LewdHuTao
Original Repository: shittybot/niizuki
Current Maintainer: urfavteddybear
npm install muthera
# or
yarn add muthera
const { Muthera } = require("muthera"); // Import muthera
client.on("ready", async (client) => {
// defined nodes
const nodes = [
{
name: "localhost",
host: "",
password: "",
port: 2333,
secure: false,
},
];
// initialize manager
client.manager = new Muthera(nodes, {
send: (payload) => {
const guild = this.guilds.cache.get(payload.d.guild_id);
if (guild) guild.shard.send(payload);
},
defaultSearchPlatform: "ytmsearch",
reconnectTimeout: 600000,
reconnectTries: 1000,
});
});
client.on("interactionCreate", async (interaction) => {
if (slashCmd === "play") {
const player = client.manager.createConnection({
guildId: interaction.guild.id,
voiceChannel: interaction.member.voice.channel.id,
textChannel: interaction.channel.id,
deaf: true,
});
const resolve = await client.manager.resolve({
query: query,
requester: interaction.user.id,
});
const { loadType, tracks, playlistInfo } = resolve;
if (loadType === "track" || loadType === "search") {
const track = tracks.shift();
player.queue.add(track);
interaction.reply(
`Add [${track.info.title}](${track.info.uri}) to the queue.`
);
if (!player.playing && !player.paused) return player.play();
}
if (loadType === "playlist") {
for (const track of resolve.tracks) {
track.info.requester = interaction.user.id;
player.queue.add(track);
}
interaction.reply(`Add \`${playlistInfo.name}\` to the queue`);
if (!player.playing && !player.paused) return player.play();
} else {
return interaction.reply("There are no results found.");
}
}
});
client.login("token");
client.manager.on("nodeConnect", async (node) => {
console.log(`${node.name} is connected.`);
});
client.manager.on("nodeDisconnect", async (node) => {
console.log(`${node.name} is disconnected.`);
});
client.manager.on("trackStart", async (player, track) => {
const channel = client.channels.cache.get(player.textChannel);
channel.send(
`Now Playing: [${track.info.title}](${track.info.uri}) [${track.info.requester}]`
);
});
client.manager.on("queueEnd", async (player, track) => {
const channel = client.channels.cache.get(player.textChannel);
let autoPlay = false;
if (autoPlay) {
player.autoplay(player);
} else {
player.destroy();
channel.send(`The queue has ended`);
}
});
FAQs
A simple Lavalink wrapper for Discord music bot. Forked from Niizuki.
We found that muthera demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.