
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.
biodome-client
Advanced tools
JavaScript client for biodome
The biodome-client is how any services wishing to utilise the biodome server do so. Services include device scheduling, environment compensation, logging, UI client / control panel, emergency notification system, etc.
var biodomeClient = require('biodome-client');
var conf = {
'host' : 'localhost:8888'
};
var client = biodomeClient(conf);
// sending commands to biodome server
// Will attempt to fetch and store a JWT token if it doesn't already have a valid one
client.read('outside_temp')
.then(function(data) {
// data is JSON data for endpoint with ID of "temperature"
}).catch(function(err) {
// oh. that's unfortunate.
});
// write HIGH to endpoint with an ID of "light"
client.write('light', 1)
.then(function(data) { ... });
// ...or you can use more complex selectors as first param
client.read({ 'type' : 'temperature' })
.then(function(data) {
// data is all JSON of matching endpoints
});
// ...or call with your own command object
client.command({
'selector' : {'type' : 'lights', 'value' : 1 },
'instruction' : {'type' : 'write', 'value' : 0 }
}).then(function(endpoints)) {
// endpoints is JSON data of affected endpoints
});
FAQs
API client for biodome
The npm package biodome-client receives a total of 3 weekly downloads. As such, biodome-client popularity was classified as not popular.
We found that biodome-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.