
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.
This is a user-space USB driver for FTDI chipsets, written in pure JavaScript. It's currently written for Node.js/Electron, but uses the Node.js implementation of the WebUSB spec, so should easily be adapted for WebUSB in the browser.
npm install ftdi-js
const FTDI = require('ftdi-js');
const ftdi = new FTDI(vendorId, productId, { baudRate: 9600 });
ftdi.on('error', (err) => {
console.log('Error', err);
});
ftdi.on('ready', async () => {
const data = new Uint8Array(1);
data.set([0x06]);
ftdi.on('data', async (data) => {
console.log('Data:', bytes2hex(data));
});
await ftdi.writeAsync(data);
await ftdi.close();
});
Also see test.js for details.
FAQs
FTDI user-space driver for Node.js/Electron in pure JS
We found that ftdi-js 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.