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.
This library makes easier to call ChattyCrow API (http://chattycrow.com/).
npm install chattycrow
var chattycrow = require('chattycrow').createClient('token', 'default_channel');
Every sender and contacts methods header:
send<Service>(payload, [contacts, options], callback);
INFO: payload and calback is required, but callback can be null.
function chattyCrowResponse(err, body, res) {
if (err) {
console.log(err.message);
} else {
// It depends on request
}
}
ChattyCrow always try to send message to all contacts from contact list or contacts specified in request.
{
"status": "OK",
"msg": "15 of 15 notifications created.",
"success" : 15,
"total" : 15,
"contacts" : []
}
{
"status": "PERROR",
"msg": "12 of 15 notifications created.",
"success" : 12,
"total" : 15,
"contacts" : [
"test1", "test2", "test3"
]
}
{
"status": "OK|ERROR|PERROR",
"msg": "Status message",
"stats" : {
"success" : 15,
"exists" : 28,
"failed" : 12
},
"contacts" : {
"exists" : [ "franta5", "franta6" ],
"failed" : [ "franta1", "franta4" ]
}
}
Not yet implemented!
chattycrow.sendIos({ payload: { 'hello' }}, [ 'contacts', 'contact2' ], {channel: 'other', token: 'not_default'}, chattyCrowResponse);
chattycrow.sendAndroid({ payload: { data : { key1 : 'hello' }}, chattyCrowResponse);
chattycrow.sendSkype('Skype message', null);
chattycrow.sendJabber('Jabber message', null);
chattycrow.sendJabber('SMS message', chattyCrowResponse);
It's actually very usable, you can automatically add or remove contacts in your application after user was registered, it's great for example email notification subscription.
function contactAddResult(err, body, response) {
if (err) {
console.log(err.message);
} elsif (body) {
console.log('Status: ' + body.status);
console.log('Message: ' + body.msg);
console.log('Stats: ' + body.stats.success + '/' + body.stats.exists + '/' + body.stats.failed);
}
}
chattycrow.addContacts(['test1', 'test2'], contactAddResult);
function contactRemoveResult(err, body, response) {
if (err) {
console.log(err.message);
} else if (body) {
console.log('Status: ' + body.status);
console.log('Message: ' + body.msg);
console.log('Stats: ' + body.stats.success + '/' + body.stats.failed);
}
}
// Add contacts
chattycrow.removeContacts(['test1', 'test2'], { channel: 'other than default' }, contactRemoveResult);
FAQs
Chatty Crow client library to call Chatty Crow API.
The npm package chattycrow receives a total of 1 weekly downloads. As such, chattycrow popularity was classified as not popular.
We found that chattycrow 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.