
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.
Node library for the Bosch Sensortec BNO055, an intelligent 9-axis “Absolute Orientation Sensor”, which includes sensors and sensor fusion in a single package.
Install i2c following instructions here: https://github.com/kelly/node-i2c
$ npm install --save bno-055
var BNO055 = require('bno-055');
var async = require('async');
var imu = new BNO055();
imu.beginNDOF(function() {
console.info('imu running');
setInterval(function() {
async.series({
calibrationStatus: imu.getCalibrationStatus.bind(imu),
quaternion: imu.getQuaternion.bind(imu),
euler: imu.getEuler.bind(imu),
linearAcceleration: imu.getLinearAcceleration.bind(imu)
},
function(err, results) {
console.info( 'imu: ', JSON.stringify(results) );
});
}, 1000);
});
Change the mounting position of the sensor. See section 3.4 Axis remap in the datasheet for details.
var imu = new BNO055({
orientation: BNO055.orientation(BNO055.AXIS_REMAP_Y, BNO055.AXIS_REMAP_X, BNO055.AXIS_REMAP_Z, 0,1,0)
});
Resuse the sensor's calibration data. See section 3.10 Calibration for details on manual calibration.
// get calibration values, and save for later
var calibrationData;
imu.getCalibrationData(function(err, results) {
if (!err && results) {
calibrationData = results;
}
});
//then use that data later when initializing the sensor
var imu = new BNO055({
calibration: calibrationData
});
FAQs
Node library for the Bosch Sensortec BNO055, an intelligent 9-axis “Absolute Orientation Sensor”, which includes sensors and sensor fusion in a single package.
We found that bno055 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.