mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-04-30 20:24:32 +02:00
Merge branch 'master' into issue-730
This commit is contained in:
@@ -73,6 +73,9 @@ analyzer.nexus.proxy=true
|
||||
analyzer.central.enabled=true
|
||||
analyzer.central.url=https://search.maven.org/solrsearch/select
|
||||
|
||||
# the URL for searching api.nodesecurity.io
|
||||
analyzer.nsp.url=https://api.nodesecurity.io/check
|
||||
|
||||
# the number of nested archives that will be searched.
|
||||
archive.scan.depth=3
|
||||
|
||||
@@ -84,6 +87,7 @@ analyzer.experimental.enabled=true
|
||||
analyzer.jar.enabled=true
|
||||
analyzer.archive.enabled=true
|
||||
analyzer.node.package.enabled=true
|
||||
analyzer.nsp.package.enabled=true
|
||||
analyzer.composer.lock.enabled=true
|
||||
analyzer.python.distribution.enabled=true
|
||||
analyzer.python.package.enabled=true
|
||||
|
||||
59
dependency-check-core/src/test/resources/nsp/package.json
Normal file
59
dependency-check-core/src/test/resources/nsp/package.json
Normal file
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"name": "owasp-nodejs-goat",
|
||||
"private": true,
|
||||
"version": "1.3.0",
|
||||
"description": "A tool to learn OWASP Top 10 for node.js developers",
|
||||
"main": "server.js",
|
||||
"dependencies": {
|
||||
"bcrypt-nodejs": "0.0.3",
|
||||
"body-parser": "^1.15.1",
|
||||
"consolidate": "^0.14.1",
|
||||
"csurf": "^1.8.3",
|
||||
"dont-sniff-mimetype": "^1.0.0",
|
||||
"express": "^4.13.4",
|
||||
"express-session": "^1.13.0",
|
||||
"forever": "^0.15.1",
|
||||
"helmet": "^2.0.0",
|
||||
"marked": "0.3.5",
|
||||
"mongodb": "^2.1.18",
|
||||
"serve-favicon": "^2.3.0",
|
||||
"swig": "^1.4.2",
|
||||
"underscore": "^1.8.3"
|
||||
},
|
||||
"comments": {
|
||||
"//": "do not upgrade the marked package version it is set by purpose",
|
||||
"//": "to be a vulnerable package to demonstrate an xss introduced through",
|
||||
"//": "a9 insecure components"
|
||||
},
|
||||
"engines": {
|
||||
"node": "4.4.x",
|
||||
"npm": "2.15.x"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "node server.js",
|
||||
"test": "node node_modules/grunt-cli/bin/grunt test",
|
||||
"db:seed": "grunt db-reset",
|
||||
"precommit": "grunt precommit"
|
||||
},
|
||||
"devDependencies": {
|
||||
"async": "^2.0.0-rc.4",
|
||||
"grunt": "^1.0.1",
|
||||
"grunt-cli": "^1.2.0",
|
||||
"grunt-concurrent": "^2.3.0",
|
||||
"grunt-contrib-jshint": "^1.0.0",
|
||||
"grunt-contrib-watch": "^1.0.0",
|
||||
"grunt-env": "latest",
|
||||
"grunt-jsbeautifier": "^0.2.12",
|
||||
"grunt-mocha-test": "^0.12.7",
|
||||
"grunt-nodemon": "^0.4.2",
|
||||
"grunt-if": "https://github.com/binarymist/grunt-if/tarball/master",
|
||||
"grunt-npm-install": "^0.3.0",
|
||||
"grunt-retire": "^0.3.12",
|
||||
"mocha": "^2.4.5",
|
||||
"selenium-webdriver": "^2.53.2",
|
||||
"should": "^8.3.1",
|
||||
"zaproxy": "^0.2.0"
|
||||
},
|
||||
"repository": "https://github.com/OWASP/NodejsGoat",
|
||||
"license": "Apache 2.0"
|
||||
}
|
||||
Reference in New Issue
Block a user