Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
freeman-slack
Advanced tools
publish a message to multiple Slack channels/accounts simultaneously
Publish messages to multiple Slack accounts & channels simultaneously.
This is a wrapper for slack-notify
(NPM module) with the added advantage of publishing to multiple accounts.
We use this so we can receive info and bug messages in the Freeman Industries Slack, and simultaneously publish the same messages to a channel our clients' Slack channels.
Someone who needs to publish a message to more than one Slack account will find this useful.
var product_name = "A Freeman Industries node.js app";
var accounts = [{
name: "Freeman Industries",
channel: "#dedicated-app-channel",
info_emoji: ":muscle:",
bug_emoji: ":scream:",
hook: "https://hooks.slack.com/services/..."
}, {
name: "Client",
channel: "#app-freeman-industries-made-for-us",
info_emoji: ":ocean:",
bug_emoji: ":volcano:",
hook: "https://hooks.slack.com/services/..."
}]
var slack = require('freeman-slack')(product_name, accounts);
slack.info
Here's how we usually use it. text
and fields
are both required, even if empty string/object. You can have as many fields as you like. In this example product_name
is a global, and message
is a JS object that's been passed to a function.
slack.info({
text: 'Info message on ' + product_name + '!',
fields: {
'Body': id,
'More info': JSON.stringify(message)
}
});
slack.bug
Pretty much the same as above. Customize to your heart's content!!
slack.bug({
text: 'New bug on ' + product_name + '!',
fields: {
'Function': id,
'Error body': JSON.stringify(message)
}
});
All contributions are welcome 🌞
FAQs
publish a message to multiple Slack channels/accounts simultaneously
The npm package freeman-slack receives a total of 0 weekly downloads. As such, freeman-slack popularity was classified as not popular.
We found that freeman-slack 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.