
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-lepton
Advanced tools
A NodeJS wrapper library for Dropbox JPEG Letpon compression tool.
This guide assumes you have Dropbox Lepton and node/npm already installed.
First, run npm install node-lepton --save
for your app. Then, in an Express app:
var lepton = require('node-lepton');
// ...
After this you can run one of two commands, compress or decompress. You must provide a valid path for either of these functions to work.
These functions takes a callback that returns an error object and the output in form of a binary file blob.
lepton.compress('../../aoeu.jpeg',
{
unjailed: true,
},
function(err, data){
if(err) throw err;
console.log('Successfully compressed aoeu.jpeg');
});
lepton.decompress('../../aoeu.lep',
{
unjailed: true,
},
function(err, data){
if(err) throw err;
console.log('Successfully decompressed aoeu.lep');
});
##Options
####unjailed type: Boolean
####single_thread type: Boolean
####max_children type: Integer
####preload type: Boolean
####allow_progressive type: Boolean
####fork type: Boolean
####zlib type: Boolean
####timebound type: Integer (in ms)
####Socket type: Boolean or Integer (port)
####Listen type: Boolean or Integer
####ZLibListen type: Boolean or Integer
FAQs
NodeJS Wrapper Library for Dropbox Lepton
The npm package node-lepton receives a total of 1 weekly downloads. As such, node-lepton popularity was classified as not popular.
We found that node-lepton 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.