-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement Yarn Berry Analyser (#7319)
- Loading branch information
Showing
8 changed files
with
10,980 additions
and
73 deletions.
There are no files selected for viewing
302 changes: 232 additions & 70 deletions
302
core/src/main/java/org/owasp/dependencycheck/analyzer/YarnAuditAnalyzer.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
934 changes: 934 additions & 0 deletions
934
core/src/test/resources/yarn-berry-audit/.yarn/releases/yarn-4.6.0.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.6.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"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": { | ||
"//": "a9 insecure components" | ||
}, | ||
"engines": { | ||
"node": "15.x.x", | ||
"npm": "6.x.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-if": "https://github.com/binarymist/grunt-if/tarball/master", | ||
"grunt-jsbeautifier": "^0.2.12", | ||
"grunt-mocha-test": "^0.12.7", | ||
"grunt-nodemon": "^0.4.2", | ||
"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", | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.