forked from yarnpkg/yarn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mute option for security advisories
in the audit command you can now add for example --mute 123 to mute specific advisories. This code is mostly taken from pr yarnpkg#8223 and Fixes yarnpkg#6669
- Loading branch information
Showing
9 changed files
with
248 additions
and
3 deletions.
There are no files selected for viewing
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
134 changes: 134 additions & 0 deletions
134
__tests__/fixtures/audit/multi-vulnerable-dep-installed/audit-api-response.json
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,134 @@ | ||
{ | ||
"actions": [ | ||
{ | ||
"action": "install", | ||
"module": "minimatch", | ||
"target": "3.0.4", | ||
"isMajor": false, | ||
"resolves": [ | ||
{ | ||
"id": 119, | ||
"path": "minimatch", | ||
"dev": false, | ||
"optional": false, | ||
"bundled": false | ||
} | ||
] | ||
}, | ||
{ | ||
"action": "install", | ||
"module": "minimatch", | ||
"target": "3.0.5", | ||
"isMajor": false, | ||
"resolves": [ | ||
{ | ||
"id": 120, | ||
"path": "minimatch", | ||
"dev": false, | ||
"optional": false, | ||
"bundled": false | ||
} | ||
] | ||
} | ||
], | ||
"advisories": { | ||
"119": { | ||
"findings": [ | ||
{ | ||
"version": "3.0.0", | ||
"paths": [ | ||
"minimatch" | ||
], | ||
"dev": false, | ||
"optional": false, | ||
"bundled": false | ||
} | ||
], | ||
"id": 119, | ||
"created": "2016-05-25T16:37:20.000Z", | ||
"updated": "2018-03-01T21:58:01.072Z", | ||
"deleted": null, | ||
"title": "Regular Expression Denial of Service", | ||
"found_by": { | ||
"name": "Nick Starke" | ||
}, | ||
"reported_by": { | ||
"name": "Nick Starke" | ||
}, | ||
"module_name": "minimatch", | ||
"cves": [ | ||
"CVE-2016-10540" | ||
], | ||
"vulnerable_versions": "<=3.0.1", | ||
"patched_versions": ">=3.0.2", | ||
"overview": "Affected versions of `minimatch` are vulnerable to regular expression denial of service attacks when user input is passed into the `pattern` argument of `minimatch(path, pattern)`.\n\n\n## Proof of Concept\n```\nvar minimatch = require(“minimatch”);\n\n// utility function for generating long strings\nvar genstr = function (len, chr) {\n var result = “”;\n for (i=0; i<=len; i++) {\n result = result + chr;\n }\n return result;\n}\n\nvar exploit = “[!” + genstr(1000000, “\\\\”) + “A”;\n\n// minimatch exploit.\nconsole.log(“starting minimatch”);\nminimatch(“foo”, exploit);\nconsole.log(“finishing minimatch”);\n```", | ||
"recommendation": "Update to version 3.0.2 or later.", | ||
"references": "", | ||
"access": "public", | ||
"severity": "high", | ||
"cwe": "CWE-400", | ||
"metadata": { | ||
"module_type": "Multi.Library", | ||
"exploitability": 4, | ||
"affected_components": "Internal::Code::Function::minimatch({type:'args', key:0, vector:{type:'string'}})" | ||
}, | ||
"url": "https://nodesecurity.io/advisories/118" | ||
}, | ||
"120": { | ||
"findings": [ | ||
{ | ||
"version": "3.0.0", | ||
"paths": [ | ||
"minimatch" | ||
], | ||
"dev": false, | ||
"optional": false, | ||
"bundled": false | ||
} | ||
], | ||
"id": 120, | ||
"created": "2016-05-25T16:37:20.000Z", | ||
"updated": "2018-03-01T21:58:01.072Z", | ||
"deleted": null, | ||
"title": "Regular Expression Denial of Service unmuted", | ||
"found_by": { | ||
"name": "Nick Starke" | ||
}, | ||
"reported_by": { | ||
"name": "Nick Starke" | ||
}, | ||
"module_name": "minimatch", | ||
"cves": [ | ||
"CVE-2016-10540" | ||
], | ||
"vulnerable_versions": "<=3.0.1", | ||
"patched_versions": ">=3.0.2", | ||
"overview": "Affected versions of `minimatch` are vulnerable to regular expression denial of service attacks when user input is passed into the `pattern` argument of `minimatch(path, pattern)`.\n\n\n## Proof of Concept\n```\nvar minimatch = require(“minimatch”);\n\n// utility function for generating long strings\nvar genstr = function (len, chr) {\n var result = “”;\n for (i=0; i<=len; i++) {\n result = result + chr;\n }\n return result;\n}\n\nvar exploit = “[!” + genstr(1000000, “\\\\”) + “A”;\n\n// minimatch exploit.\nconsole.log(“starting minimatch”);\nminimatch(“foo”, exploit);\nconsole.log(“finishing minimatch”);\n```", | ||
"recommendation": "Update to version 3.0.2 or later.", | ||
"references": "", | ||
"access": "public", | ||
"severity": "high", | ||
"cwe": "CWE-400", | ||
"metadata": { | ||
"module_type": "Multi.Library", | ||
"exploitability": 4, | ||
"affected_components": "Internal::Code::Function::minimatch({type:'args', key:0, vector:{type:'string'}})" | ||
}, | ||
"url": "https://nodesecurity.io/advisories/118" | ||
} | ||
}, | ||
"muted": [], | ||
"metadata": { | ||
"vulnerabilities": { | ||
"info": 0, | ||
"low": 0, | ||
"moderate": 0, | ||
"high": 2, | ||
"critical": 0 | ||
}, | ||
"dependencies": 5, | ||
"devDependencies": 0, | ||
"optionalDependencies": 0, | ||
"totalDependencies": 5 | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
__tests__/fixtures/audit/multi-vulnerable-dep-installed/package.json
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,7 @@ | ||
{ | ||
"name": "yarn-test", | ||
"version": "0.0.0", | ||
"dependencies": { | ||
"minimatch": "^3.0.0" | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
__tests__/fixtures/audit/multi-vulnerable-dep-installed/yarn.lock
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,28 @@ | ||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. | ||
# yarn lockfile v1 | ||
|
||
|
||
balanced-match@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" | ||
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= | ||
|
||
brace-expansion@^1.0.0: | ||
version "1.1.11" | ||
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" | ||
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== | ||
dependencies: | ||
balanced-match "^1.0.0" | ||
concat-map "0.0.1" | ||
|
||
concat-map@0.0.1: | ||
version "0.0.1" | ||
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" | ||
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= | ||
|
||
minimatch@^3.0.0: | ||
version "3.0.0" | ||
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.0.tgz#5236157a51e4f004c177fb3c527ff7dd78f0ef83" | ||
integrity sha1-UjYVelHk8ATBd/s8Un/33Xjw74M= | ||
dependencies: | ||
brace-expansion "^1.0.0" |
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
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
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
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
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