
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
stimp-client
Advanced tools
Simple STOMP Client intended to support STOMP 1.2
Important - please refer to Stimp Server - this client counterpart. (https://github.com/paulosimao/stimp-server)
Ok folks, now this is WIP, but if you´re seeking to an end to end STOMP 1.2 solution, you will get it!
For those who want to start fast:
var client = require('stimp-client')();
client.connect('127.0.0.1', 61613, null, function () {
for (var i = 0; i < 3000; i++) {
client.send('/topic/a', 'TEST:' + i);
}
});
var client = require('stimp-client')();
client.connect('127.0.0.1', 61613, null, function () {
client.subscribe('/topic/a', null, function () {
client.on('message', function (body, msg) {
console.log(body);
});
});
});
You can optionally set parameters to client:
config: {
autoack: true
}
autoack:true|false - Tell client if ack should be sent automatically in response to messages received.In case false is set, you can reply to server informing a message was wrongly processed. In this case, message will be moved to deadletter queue in the server.Please note this is working fine, but not ready for production yet - testing support is welcome.
FAQs
Stomp client in Node.js. Please refer to readme.
We found that stimp-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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.