
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.
A library for creating bots that interact with the Signal application. Not affiliated with the Signal project or Open Whisper Systems.
A library for creating bots that interact with the Signal application. Not affiliated with the Signal project or Open Whisper Systems.
Install with npm install signal-bot.
Currently only works on Linux, with Node.js >=14.0.0.
This library requires a working installation of signal-cli running in daemon mode with the phone number you want to use. Use this Python script for an easy installation process.
Tested on v0.7.2 of signal-cli.
const {Client} = require("signal-bot");
const bot = new Client();
const prefix = "!";
bot.on("message", msg => {
if (!msg.content.startsWith(prefix)) return;
const command = msg.content.slice(prefix.length);
if (command === "hello") {
msg.conversation.sendMessage("Hello World!");
} else if (command === "whoami") {
msg.conversation.sendMessage(`You are ${msg.author.id}`);
}
});
bot.connect();
Send the bot !hello and it should respond with Hello World!.
Send the bot !whoami and it should respond with You are <phone number>.
FAQs
A library for creating bots that interact with the Signal application. Not affiliated with the Signal project or Open Whisper Systems.
We found that signal-bot 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
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.