
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.
cometd-node-promise-client
Advanced tools
CometD client for Node.js that adds support for promises
Add the client to your project by running:
npm install cometd-node-promise-client
1.a) with the default console logger:
const cometd = new CometdClient();
OR
1.b) with the Winston logger:
Winston.loggers.add('COMETD', {
console: { level: 'info', colorize: true, label: 'COMETD' }
});
const cometd = new CometdClient(Winston.loggers.get('COMETD'));
cometd.configure({
url: cometdServerUrl,
requestHeaders: { Authorization: 'Bearer ' + this.session.access_token }, // Optional parameter if you wan to pass additional headers
appendMessageTypeToURL: false
});
topicName
topic:cometd.connect().then(() => {
// Connection succeeded
cometd.subscribe(topicName, onMessageReceived).then(subscription => {
// This promise resolves when the client has succesfully subscribed
});
});
The onMessageReceived
callback function is executed each time a topicName
message is received.
Alternatively, you can batch subscriptions (network optimization):
const cometdPromises = [
cometd.subscribe(topic1, onMessage1Received),
cometd.subscribe(topic2, onMessage2Received)
];
cometd.batch(cometdPromises).then(() => {
// This promise resolves when the batch is processed
});
cometd.unsubscribe(subscription).then(() => {
// This promise resolves when the client has succesfully unsubscribed
});
cometd.disconnect().then(() => {
// This promise resolves when the client has succesfully disconnected
});
disconnect()
unsubscribes from all active subscriptions.
FAQs
CometD client for Node.js that adds support for promises
The npm package cometd-node-promise-client receives a total of 1 weekly downloads. As such, cometd-node-promise-client popularity was classified as not popular.
We found that cometd-node-promise-client 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.