
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
cleverreach
Advanced tools
Promise based npm module for using CleverReach REST API
$ npm install --save cleverreach
var CleverReach = require('cleverreach');
// Login credentials
var cr = new CleverReach({
client_id: '123456',
login: 'john.doe@foo.bar',
password: 'abc123'
});
// Get all mailings
cr.mailings().getAll().then(function(mailings) {
console.log(mailings);
});
// Get single mailing with specified ID
cr.mailings().get(1234567).then(function(mailing) {
console.log(mailing);
}).catch(function(error) {
console.log(error);
})
// Create new mailing
var newMailing = {
'mailingData': {
'name': 'This is the title',
'type': 'html/text',
'subject': 'subject line',
'sender_name': 'Bruce Whayne (Whayne corp.)',
'sender_email': 'bruce.whayne@gotham.com',
'group_id': '#',
'html': 'Newsletter Content',
'text': 'this is the Text only'
}
};
cr.mailings().create(newMailing).then(function(mailing) {
console.log(mailing)
});
You find detailed infos about the CleverReach REST API here
Here is a list of all implemented functions:
FAQs
Promise based npm module for using CleverReach API
The npm package cleverreach receives a total of 1 weekly downloads. As such, cleverreach popularity was classified as not popular.
We found that cleverreach 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.