Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
yarn add -E argufy
argufy
will parse command line arguments to Node.js CLI programs.
The package is available by importing its default function:
import argufy from 'argufy'
The package assumes that the arguments begin from the 3rd position, i.e.,
node example.js --title "Hello World"
argufy(
config: <string, ConfigItem>,
argv?: string[],
): object
The flags from the arguments will be extracted according to the configuration object and the arguments array. If arguments array is not passed, process.argv
is used to find arguments.
import argufy from 'argufy'
const config = {
title: { short: 't', command: true },
list: { short: 'l', boolean: true },
app: 'a',
delay: 'y',
file: 'f',
wait: { short: 'w', number: true },
'no-empty': 'e',
resize: 'z',
colors: 'c',
dir: 'D',
}
const res = argufy(config, process.argv)
console.log(JSON.stringify(res, null, 2))
node example.js --title "Hello World" -w 10 -l -app Argufy
# or
node example.js HelloWorld -w 10 -l -app Argufy
{
"_argv": [],
"title": "HelloWorld",
"list": true,
"app": "Argufy",
"wait": 10
}
The special _argv property
will be assigned to contain all unmatched arguments. For example, it can be used to pass any additional parameters through to other program.
ConfigItem
TypeThe configuration for each flag can either be a shorthand string, or an object. If it is an object, it can include the following parameters:
Flag
: The flag passed to the program.
Name | Type | Description | Default |
---|---|---|---|
short | string | Shorthand for this argument, usually one letter. | - |
boolean | boolean | Whether the flag is a boolean and does not require a value. | false |
number | boolean | Specifies whether the flag should be parsed as a number. | false |
command | boolean | If set to true, the value is read from the first argument passed to the CLI command (e.g., $ cli command ). | false |
multiple | boolean | When using the command property, will parse the commands as an array. | false |
(c) Art Deco 2019
FAQs
Parses Command Line Arguments To Node.JS CLI Programs, Keeps Them In Arguments.xml File To Paste Into README Documentation And Generate Google Closure Compatible Exports.
We found that argufy 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.