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.
argv-parser
Advanced tools
Argv-parser is a small and simple node.js module to parser `process.argv`.
Argv-parser is a small and simple node.js module to parse
process.argv
Argv-parser is designed to be simple and will do nothing about:
npm install argv-parser --save
var parser = require('argv-parser');
Parse argument vector (argv) or something like argv.
ret
Object
Object
the parsed objectObject
the warnings of each option. If not exists, ret.warning
will be an empty objectObject
the errors of each option.Array
process.argv
or something like that.
Object
Object
an extended nopt
rulesNumber
(optional, default to 2
) the offset from which the parser should start to parse.The same as parser.parse
Object
Object
Object
(optional) type definitions. For most cases, you needn't this optiontest.js
var rules = {
open: {
type: Boolean,
value: true
},
port: {
type: Number,
short: 'p',
value: function(port, parsed, tool) {
if(!port){
port = 9230;
}
if(port < 8000){
tool.warn('port < 8000 which is dangerous');
if(port < 1000){
tool.error('port < 100 which is forbidden');
return;
}
}
return port;
}
},
html: {
type: 'html',
},
name: {
type: String
}
};
var data = parser.parse(process.argv, {
rules: rules
});
Default values:
$ node test.js
> data.parsed.open; // true
> data.parsed.port; // 9230
Type limitation:
$ node test.js --port 8888 --no-open --name name<script>alert(123)</script>
> data.parsed.open; // false
> data.parsed.port; // 8888
> data.parsed.name; // 'namealert(123)'; -> stripped
> data.errors; // {}
> data.warnings; // {}
Warnings and errors:
$ node test.js --port 888 --no-open --name name<script>alert(123)</script>
> data.parsed.open; // false
> data.parsed.port; // undefined; -> error
> data.parsed.name; // 'name<script>alert(123)</script>'
> data.errors; // {port: ['port < 100 which is forbidden']}
> data.warnings; // {port: ['port < 8000 which is dangerous']}
FAQs
Argv-parser is a small and simple node.js module to parser `process.argv`.
The npm package argv-parser receives a total of 286 weekly downloads. As such, argv-parser popularity was classified as not popular.
We found that argv-parser 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.