
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
pub-sub-handler
Advanced tools
This was written to be used with Redis as a Publish/Subscribe handler. It is just a wrapper designed to help with managing sockets.
var psh = require( 'pub-sub-handler' )( { host: localhost, port: 6379 }, function( channel ){
// Called when the backend Redis makes a subscription
};
psh.subscribe( 'channel-name', 'key', object, function( channel, key, object, message ){
// Called when a message is published to the specified channel
};
psh.publish( 'channel-name', 'message' );
psh.unsubscribe( 'channel-name', 'key' );
(kill the Redis connections)
psh.end();
A typical use would be the key is a user id and the object is a socket. User connects to a web socket, you subscribe to a specified channel with the user id as a key and pass in the socket as the object. Then in your handler, when a message is published to the channel you have the socket to write the message to.
FAQs
Redis Pub/Sub with an object & key on message.
The npm package pub-sub-handler receives a total of 1 weekly downloads. As such, pub-sub-handler popularity was classified as not popular.
We found that pub-sub-handler 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
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.