
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.
ØMQ bindings for node.js.
$ npm install zmq
producer.js:
var zmq = require('zmq')
, sock = zmq.socket('push');
sock.bindSync('tcp://127.0.0.1:3000');
console.log('Producer bound to port 3000');
setInterval(function(){
console.log('sending work');
sock.send('some work');
}, 500);
worker.js:
var zmq = require('zmq')
, sock = zmq.socket('pull');
sock.connect('tcp://127.0.0.1:3000');
console.log('Worker connected to port 3000');
sock.on('message', function(msg){
console.log('work: %s', msg.toString());
});
Install dev deps:
$ npm install
Build:
$ make
Test:
$ make test
Authored by Justin Tulloss, maintained by Shripad K and TJ Holowaychuk. To contribute please ensure all tests pass, and do your best to maintain the style used within the rest of the library.
Output of git summary
:
project: zeromq.node
commits: 260
files : 38
authors:
114 Justin Tulloss 43.8%
53 Tj Holowaychuk 20.4%
48 Stéphan Kochen 18.5%
12 jeremybarnes 4.6%
10 TJ Holowaychuk 3.8%
9 mike castleman 3.5%
3 Yaroslav Shirokov 1.2%
2 Corey Jewett 0.8%
2 mgc 0.8%
1 rick 0.4%
1 Matt Crocker 0.4%
1 Joshua Gourneau 0.4%
1 Micheil Smith 0.4%
1 Jeremy Barnes 0.4%
1 nponeccop 0.4%
1 Paul Bergeron 0.4%
FAQs
Bindings for node.js and io.js to ZeroMQ
The npm package zmq receives a total of 3,281 weekly downloads. As such, zmq popularity was classified as popular.
We found that zmq demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.