
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.
Toolkit for creating command line interfaces without writing so much code
Toolkit for creating command line interfaces without writing so much code.
menu-args
uses the args package.
const menu = require('menu-args')
var args = menu(`
Commands
serve "Run server"
build
reload
Options
user "Username"
pass "Password system"
state
port (8080) "Port, default value"
`)
console.log(args.parse(process.argv))
If the command is executed:
node test.js -u the.user -p 1a2b3c
it is obtained:
/* { P: '8080',
port: '8080',
u: 'the.user',
user: 'the.user',
p: '1a2b3c',
pass: '1a2b3c' } */
Note that the variable
args
is exactly the args package
npm install menu-args --save
If you run function args.showHelp()
, we'll see:
Usage: test.js [options] [command]
Commands:
build, b
help Display help
reload undefined
serve "Run server"
version Display version
Options:
-h, --help Output usage information
-p, --pass Password system
-P, --port [value] Port, default value (defaults to "8080")
-s, --state
-u, --user "Username"
-v, --version Output the version number
License MIT
FAQs
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.