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.
@naiverlabs/detective
Advanced tools
find all calls to require()
by walking the AST
strings_src.js:
var a = require('a');
var b = require('b');
var c = require('c');
strings.js:
var detective = require('detective');
var fs = require('fs');
var src = fs.readFileSync(__dirname + '/strings_src.js');
var requires = detective(src);
console.dir(requires);
output:
$ node examples/strings.js
[ 'a', 'b', 'c' ]
var detective = require('detective');
Give some source body src
, return an array of all the require()
calls with
string arguments.
The options parameter opts
is passed along to detective.find()
.
Give some source body src
, return found
with:
found.strings
- an array of each string found in a require()
found.expressions
- an array of each stringified expression found in a
require()
callfound.nodes
(when opts.nodes === true
) - an array of AST nodes for each
argument found in a require()
callOptionally:
opts.word
- specify a different function name instead of "require"
opts.nodes
- when true
, populate found.nodes
opts.isRequire(node)
- a function returning whether an AST CallExpression
node is a require callopts.parse
- supply options directly to
acorn with some support for esprima-style
options range
and loc
opts.ecmaVersion
- default: 9With npm do:
npm install detective
MIT
FAQs
find all require() calls by walking the AST
We found that @naiverlabs/detective demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.