
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@betit/orion
Advanced tools
Orion is a pluggable framework for microservices.
Following "batteries included but removable" design philosophy. Providing sane default implementations, but everything is swappable. Comes with built in support for various transports and codecs.
Service:
const orion = require('@betit/orion');
const service = new orion.Service('calc');
service.handle('add', (req, reply) => {
reply(null, parseInt(req.params.a) + parseInt(req.params.b));
});
service.listen(() => {
console.log(`Service started: ${service}`);
});
Client:
const orion = require('@betit/orion');
const client = new orion.Client({ service: 'calc' });
client.call('add', { a: 3, b: 2 }, (err, res) => {
console.log(err, res);
client.close();
});
Check out the examples folder for more examples.
$ docker run -p 4222:4222 -p 8222:8222 -d nats
$ npm install
$ npm test
FAQs
Pluggable microservice framework
The npm package @betit/orion receives a total of 74 weekly downloads. As such, @betit/orion popularity was classified as not popular.
We found that @betit/orion demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 36 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.