Vulnerability Instance
Lookup for vulnerabilities affecting packages.
GET /api/vulnerabilities/20888?format=api
{ "url": "http://public2.vulnerablecode.io/api/vulnerabilities/20888?format=api", "vulnerability_id": "VCID-hzsn-68be-dkej", "summary": "minimatch has a ReDoS via repeated wildcards with non-matching literal in pattern\n### Summary\n`minimatch` is vulnerable to Regular Expression Denial of Service (ReDoS) when a glob pattern contains many consecutive `*` wildcards followed by a literal character that doesn't appear in the test string. Each `*` compiles to a separate `[^/]*?` regex group, and when the match fails, V8's regex engine backtracks exponentially across all possible splits.\n\nThe time complexity is O(4^N) where N is the number of `*` characters. With N=15, a single `minimatch()` call takes ~2 seconds. With N=34, it hangs effectively forever.\n\n\n### Details\n_Give all details on the vulnerability. Pointing to the incriminated source code is very helpful for the maintainer._\n\n### PoC\nWhen minimatch compiles a glob pattern, each `*` becomes `[^/]*?` in the generated regex. For a pattern like `***************X***`:\n\n```\n/^(?!\\.)[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?[^/]*?X[^/]*?[^/]*?[^/]*?$/\n```\n\nWhen the test string doesn't contain `X`, the regex engine must try every possible way to distribute the characters across all the `[^/]*?` groups before concluding no match exists. With N groups and M characters, this is O(C(N+M, N)) — exponential.\n### Impact\nAny application that passes user-controlled strings to `minimatch()` as the pattern argument is vulnerable to DoS. This includes:\n- File search/filter UIs that accept glob patterns\n- `.gitignore`-style filtering with user-defined rules\n- Build tools that accept glob configuration\n- Any API that exposes glob matching to untrusted input\n\n----\n\nThanks to @ljharb for back-porting the fix to legacy versions of minimatch.", "aliases": [ { "alias": "CVE-2026-26996" }, { "alias": "GHSA-3ppc-4f35-3m26" } ], "fixed_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/1041980?format=api", "purl": "pkg:deb/debian/node-minimatch@9.0.7-1?distro=trixie", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-minimatch@9.0.7-1%3Fdistro=trixie" }, { "url": "http://public2.vulnerablecode.io/api/packages/1054011?format=api", "purl": "pkg:deb/debian/node-minimatch@9.0.7-1", "is_vulnerable": false, "affected_by_vulnerabilities": [], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-minimatch@9.0.7-1" }, { "url": "http://public2.vulnerablecode.io/api/packages/62802?format=api", "purl": "pkg:npm/minimatch@3.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kq3k-xr3z-z3c4" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/62801?format=api", "purl": "pkg:npm/minimatch@4.2.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@4.2.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/62799?format=api", "purl": "pkg:npm/minimatch@5.1.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.1.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/62798?format=api", "purl": "pkg:npm/minimatch@6.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/62797?format=api", "purl": "pkg:npm/minimatch@7.4.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.4.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/62796?format=api", "purl": "pkg:npm/minimatch@8.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@8.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/62794?format=api", "purl": "pkg:npm/minimatch@9.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@9.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/62793?format=api", "purl": "pkg:npm/minimatch@10.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.2.1" } ], "affected_packages": [ { "url": "http://public2.vulnerablecode.io/api/packages/1054008?format=api", "purl": "pkg:deb/debian/node-minimatch@3.0.4%2B~3.0.3-1%2Bdeb11u2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-minimatch@3.0.4%252B~3.0.3-1%252Bdeb11u2" }, { "url": "http://public2.vulnerablecode.io/api/packages/932417?format=api", "purl": "pkg:deb/debian/node-minimatch@3.0.4%2B~3.0.3-1%2Bdeb11u2?distro=trixie", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-minimatch@3.0.4%252B~3.0.3-1%252Bdeb11u2%3Fdistro=trixie" }, { "url": "http://public2.vulnerablecode.io/api/packages/1054009?format=api", "purl": "pkg:deb/debian/node-minimatch@5.1.1%2B~5.1.2-1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-minimatch@5.1.1%252B~5.1.2-1" }, { "url": "http://public2.vulnerablecode.io/api/packages/932415?format=api", "purl": "pkg:deb/debian/node-minimatch@5.1.1%2B~5.1.2-1?distro=trixie", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-minimatch@5.1.1%252B~5.1.2-1%3Fdistro=trixie" }, { "url": "http://public2.vulnerablecode.io/api/packages/1054010?format=api", "purl": "pkg:deb/debian/node-minimatch@9.0.3-6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-minimatch@9.0.3-6" }, { "url": "http://public2.vulnerablecode.io/api/packages/932418?format=api", "purl": "pkg:deb/debian/node-minimatch@9.0.3-6?distro=trixie", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:deb/debian/node-minimatch@9.0.3-6%3Fdistro=trixie" }, { "url": "http://public2.vulnerablecode.io/api/packages/155761?format=api", "purl": "pkg:npm/minimatch@0.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/155762?format=api", "purl": "pkg:npm/minimatch@0.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/155763?format=api", "purl": "pkg:npm/minimatch@0.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/155764?format=api", "purl": "pkg:npm/minimatch@0.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/155765?format=api", "purl": "pkg:npm/minimatch@0.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/155766?format=api", "purl": "pkg:npm/minimatch@0.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/155767?format=api", "purl": "pkg:npm/minimatch@0.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/155768?format=api", "purl": "pkg:npm/minimatch@0.1.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.1.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/155769?format=api", "purl": "pkg:npm/minimatch@0.1.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.1.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/155770?format=api", "purl": "pkg:npm/minimatch@0.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/155771?format=api", "purl": "pkg:npm/minimatch@0.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/155772?format=api", "purl": "pkg:npm/minimatch@0.2.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/155773?format=api", "purl": "pkg:npm/minimatch@0.2.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/155774?format=api", "purl": "pkg:npm/minimatch@0.2.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/155775?format=api", "purl": "pkg:npm/minimatch@0.2.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/155776?format=api", "purl": "pkg:npm/minimatch@0.2.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/155777?format=api", "purl": "pkg:npm/minimatch@0.2.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/155778?format=api", "purl": "pkg:npm/minimatch@0.2.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/155779?format=api", "purl": "pkg:npm/minimatch@0.2.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/155780?format=api", "purl": "pkg:npm/minimatch@0.2.11", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.11" }, { "url": "http://public2.vulnerablecode.io/api/packages/155781?format=api", "purl": "pkg:npm/minimatch@0.2.12", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.12" }, { "url": "http://public2.vulnerablecode.io/api/packages/155782?format=api", "purl": "pkg:npm/minimatch@0.2.13", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.13" }, { "url": "http://public2.vulnerablecode.io/api/packages/155783?format=api", "purl": "pkg:npm/minimatch@0.2.14", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.2.14" }, { "url": "http://public2.vulnerablecode.io/api/packages/155784?format=api", "purl": "pkg:npm/minimatch@0.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/155785?format=api", "purl": "pkg:npm/minimatch@0.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@0.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/155786?format=api", "purl": "pkg:npm/minimatch@1.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@1.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/155787?format=api", "purl": "pkg:npm/minimatch@2.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/155788?format=api", "purl": "pkg:npm/minimatch@2.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/155789?format=api", "purl": "pkg:npm/minimatch@2.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/155790?format=api", "purl": "pkg:npm/minimatch@2.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/155791?format=api", "purl": "pkg:npm/minimatch@2.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/155792?format=api", "purl": "pkg:npm/minimatch@2.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/155793?format=api", "purl": "pkg:npm/minimatch@2.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/155794?format=api", "purl": "pkg:npm/minimatch@2.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/155795?format=api", "purl": "pkg:npm/minimatch@2.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/155796?format=api", "purl": "pkg:npm/minimatch@2.0.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/155797?format=api", "purl": "pkg:npm/minimatch@2.0.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@2.0.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/155798?format=api", "purl": "pkg:npm/minimatch@3.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-54ed-xy97-e7cq" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-u4v3-87qk-tqb1" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/22618?format=api", "purl": "pkg:npm/minimatch@3.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/337161?format=api", "purl": "pkg:npm/minimatch@3.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/337162?format=api", "purl": "pkg:npm/minimatch@3.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" }, { "vulnerability": "VCID-v72h-ew1u-xfcz" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/79694?format=api", "purl": "pkg:npm/minimatch@3.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/909339?format=api", "purl": "pkg:npm/minimatch@3.0.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.0.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/909340?format=api", "purl": "pkg:npm/minimatch@3.0.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.0.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/909341?format=api", "purl": "pkg:npm/minimatch@3.0.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.0.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/909342?format=api", "purl": "pkg:npm/minimatch@3.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909343?format=api", "purl": "pkg:npm/minimatch@3.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909344?format=api", "purl": "pkg:npm/minimatch@3.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@3.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/67889?format=api", "purl": "pkg:npm/minimatch@4.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@4.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909345?format=api", "purl": "pkg:npm/minimatch@4.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@4.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909346?format=api", "purl": "pkg:npm/minimatch@4.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@4.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909347?format=api", "purl": "pkg:npm/minimatch@4.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@4.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909348?format=api", "purl": "pkg:npm/minimatch@4.2.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@4.2.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909349?format=api", "purl": "pkg:npm/minimatch@4.2.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@4.2.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909350?format=api", "purl": "pkg:npm/minimatch@4.2.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@4.2.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/67890?format=api", "purl": "pkg:npm/minimatch@5.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909351?format=api", "purl": "pkg:npm/minimatch@5.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909352?format=api", "purl": "pkg:npm/minimatch@5.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909353?format=api", "purl": "pkg:npm/minimatch@5.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909354?format=api", "purl": "pkg:npm/minimatch@5.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909355?format=api", "purl": "pkg:npm/minimatch@5.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909356?format=api", "purl": "pkg:npm/minimatch@5.1.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.1.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/909357?format=api", "purl": "pkg:npm/minimatch@5.1.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.1.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/909358?format=api", "purl": "pkg:npm/minimatch@5.1.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@5.1.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/67891?format=api", "purl": "pkg:npm/minimatch@6.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909359?format=api", "purl": "pkg:npm/minimatch@6.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909360?format=api", "purl": "pkg:npm/minimatch@6.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909361?format=api", "purl": "pkg:npm/minimatch@6.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909362?format=api", "purl": "pkg:npm/minimatch@6.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/909363?format=api", "purl": "pkg:npm/minimatch@6.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909364?format=api", "purl": "pkg:npm/minimatch@6.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909365?format=api", "purl": "pkg:npm/minimatch@6.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909366?format=api", "purl": "pkg:npm/minimatch@6.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909367?format=api", "purl": "pkg:npm/minimatch@6.1.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/909368?format=api", "purl": "pkg:npm/minimatch@6.1.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/909369?format=api", "purl": "pkg:npm/minimatch@6.1.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/909370?format=api", "purl": "pkg:npm/minimatch@6.1.7", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.7" }, { "url": "http://public2.vulnerablecode.io/api/packages/909371?format=api", "purl": "pkg:npm/minimatch@6.1.8", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.8" }, { "url": "http://public2.vulnerablecode.io/api/packages/909372?format=api", "purl": "pkg:npm/minimatch@6.1.9", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.9" }, { "url": "http://public2.vulnerablecode.io/api/packages/909373?format=api", "purl": "pkg:npm/minimatch@6.1.10", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.1.10" }, { "url": "http://public2.vulnerablecode.io/api/packages/909374?format=api", "purl": "pkg:npm/minimatch@6.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@6.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/67892?format=api", "purl": "pkg:npm/minimatch@7.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909375?format=api", "purl": "pkg:npm/minimatch@7.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909376?format=api", "purl": "pkg:npm/minimatch@7.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909377?format=api", "purl": "pkg:npm/minimatch@7.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909378?format=api", "purl": "pkg:npm/minimatch@7.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909379?format=api", "purl": "pkg:npm/minimatch@7.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909380?format=api", "purl": "pkg:npm/minimatch@7.1.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.1.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/909381?format=api", "purl": "pkg:npm/minimatch@7.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909382?format=api", "purl": "pkg:npm/minimatch@7.3.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.3.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909383?format=api", "purl": "pkg:npm/minimatch@7.4.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.4.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909384?format=api", "purl": "pkg:npm/minimatch@7.4.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.4.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909385?format=api", "purl": "pkg:npm/minimatch@7.4.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.4.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909386?format=api", "purl": "pkg:npm/minimatch@7.4.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.4.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909387?format=api", "purl": "pkg:npm/minimatch@7.4.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.4.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/909388?format=api", "purl": "pkg:npm/minimatch@7.4.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.4.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/909389?format=api", "purl": "pkg:npm/minimatch@7.4.6", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@7.4.6" }, { "url": "http://public2.vulnerablecode.io/api/packages/67893?format=api", "purl": "pkg:npm/minimatch@8.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@8.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909390?format=api", "purl": "pkg:npm/minimatch@8.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@8.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909391?format=api", "purl": "pkg:npm/minimatch@8.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@8.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909392?format=api", "purl": "pkg:npm/minimatch@8.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@8.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909393?format=api", "purl": "pkg:npm/minimatch@8.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@8.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/67894?format=api", "purl": "pkg:npm/minimatch@9.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@9.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909394?format=api", "purl": "pkg:npm/minimatch@9.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@9.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909395?format=api", "purl": "pkg:npm/minimatch@9.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@9.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909396?format=api", "purl": "pkg:npm/minimatch@9.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@9.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909397?format=api", "purl": "pkg:npm/minimatch@9.0.4", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@9.0.4" }, { "url": "http://public2.vulnerablecode.io/api/packages/909398?format=api", "purl": "pkg:npm/minimatch@9.0.5", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@9.0.5" }, { "url": "http://public2.vulnerablecode.io/api/packages/67895?format=api", "purl": "pkg:npm/minimatch@10.0.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.0.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909399?format=api", "purl": "pkg:npm/minimatch@10.0.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.0.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909400?format=api", "purl": "pkg:npm/minimatch@10.0.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.0.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909401?format=api", "purl": "pkg:npm/minimatch@10.0.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.0.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909402?format=api", "purl": "pkg:npm/minimatch@10.1.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.1.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/909403?format=api", "purl": "pkg:npm/minimatch@10.1.1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.1.1" }, { "url": "http://public2.vulnerablecode.io/api/packages/909404?format=api", "purl": "pkg:npm/minimatch@10.1.2", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.1.2" }, { "url": "http://public2.vulnerablecode.io/api/packages/909405?format=api", "purl": "pkg:npm/minimatch@10.1.3", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.1.3" }, { "url": "http://public2.vulnerablecode.io/api/packages/909406?format=api", "purl": "pkg:npm/minimatch@10.2.0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-q6uh-59pj-rfdp" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:npm/minimatch@10.2.0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1089552?format=api", "purl": "pkg:rpm/redhat/automation-platform-ui@2.6.8-1?arch=el9ap", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kmtj-812h-zudn" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/automation-platform-ui@2.6.8-1%3Farch=el9ap" }, { "url": "http://public2.vulnerablecode.io/api/packages/1060002?format=api", "purl": "pkg:rpm/redhat/nodejs22@1:22.22.2-1?arch=el10_1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-dt7u-3usg-9uet" }, { "vulnerability": "VCID-gv39-q6pw-yfh4" }, { "vulnerability": "VCID-hgd1-7u6j-p7dh" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-n6ew-t7g1-33gn" }, { "vulnerability": "VCID-q4u6-6pbw-5bcq" }, { "vulnerability": "VCID-sy2z-sqgk-d7hg" }, { "vulnerability": "VCID-z7ac-jr58-gkfm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/nodejs22@1:22.22.2-1%3Farch=el10_1" }, { "url": "http://public2.vulnerablecode.io/api/packages/1060001?format=api", "purl": "pkg:rpm/redhat/nodejs22@1:22.22.2-2?arch=el10_0", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-dt7u-3usg-9uet" }, { "vulnerability": "VCID-gv39-q6pw-yfh4" }, { "vulnerability": "VCID-hgd1-7u6j-p7dh" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-kq3k-xr3z-z3c4" }, { "vulnerability": "VCID-n6ew-t7g1-33gn" }, { "vulnerability": "VCID-q4u6-6pbw-5bcq" }, { "vulnerability": "VCID-sy2z-sqgk-d7hg" }, { "vulnerability": "VCID-z7ac-jr58-gkfm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/nodejs22@1:22.22.2-2%3Farch=el10_0" }, { "url": "http://public2.vulnerablecode.io/api/packages/1066717?format=api", "purl": "pkg:rpm/redhat/nodejs24@1:24.14.1-2?arch=el10_1", "is_vulnerable": true, "affected_by_vulnerabilities": [ { "vulnerability": "VCID-1vp3-fzdr-yqbm" }, { "vulnerability": "VCID-2t7c-dju9-pff6" }, { "vulnerability": "VCID-96yh-1wub-zucg" }, { "vulnerability": "VCID-bjza-25hu-vkad" }, { "vulnerability": "VCID-dgkh-jdah-wfh9" }, { "vulnerability": "VCID-dt7u-3usg-9uet" }, { "vulnerability": "VCID-fetp-hvhq-dube" }, { "vulnerability": "VCID-gv39-q6pw-yfh4" }, { "vulnerability": "VCID-hgd1-7u6j-p7dh" }, { "vulnerability": "VCID-hzsn-68be-dkej" }, { "vulnerability": "VCID-n6ew-t7g1-33gn" }, { "vulnerability": "VCID-ph2p-u33d-8yh3" }, { "vulnerability": "VCID-q4u6-6pbw-5bcq" }, { "vulnerability": "VCID-sy2z-sqgk-d7hg" }, { "vulnerability": "VCID-twc8-ewm7-wkb1" }, { "vulnerability": "VCID-vdca-exd1-rfce" }, { "vulnerability": "VCID-xert-byqc-xbe2" }, { "vulnerability": "VCID-z7ac-jr58-gkfm" } ], "resource_url": "http://public2.vulnerablecode.io/packages/pkg:rpm/redhat/nodejs24@1:24.14.1-2%3Farch=el10_1" } ], "references": [ { "reference_url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-26996.json", "reference_id": "", "reference_type": "", "scores": [ { "value": "6.5", "scoring_system": "cvssv3", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H" } ], "url": "https://access.redhat.com/hydra/rest/securitydata/cve/CVE-2026-26996.json" }, { "reference_url": "https://api.first.org/data/v1/epss?cve=CVE-2026-26996", "reference_id": "", "reference_type": "", "scores": [ { "value": "0.00018", "scoring_system": "epss", "scoring_elements": "0.04658", "published_at": "2026-04-02T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06857", "published_at": "2026-04-24T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06851", "published_at": "2026-04-21T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06694", "published_at": "2026-04-18T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06702", "published_at": "2026-04-16T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06771", "published_at": "2026-04-13T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06778", "published_at": "2026-04-12T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06785", "published_at": "2026-04-11T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06784", "published_at": "2026-04-09T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.0675", "published_at": "2026-04-08T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06717", "published_at": "2026-04-04T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06701", "published_at": "2026-04-07T12:55:00Z" }, { "value": "0.00025", "scoring_system": "epss", "scoring_elements": "0.06878", "published_at": "2026-04-26T12:55:00Z" }, { "value": "0.00026", "scoring_system": "epss", "scoring_elements": "0.07445", "published_at": "2026-05-14T12:55:00Z" }, { "value": "0.00026", "scoring_system": "epss", "scoring_elements": "0.07178", "published_at": "2026-04-29T12:55:00Z" }, { "value": "0.00026", "scoring_system": "epss", "scoring_elements": "0.0719", "published_at": "2026-05-05T12:55:00Z" }, { "value": "0.00026", "scoring_system": "epss", "scoring_elements": "0.07345", "published_at": "2026-05-07T12:55:00Z" }, { "value": "0.00026", "scoring_system": "epss", "scoring_elements": "0.07417", "published_at": "2026-05-09T12:55:00Z" }, { "value": "0.00026", "scoring_system": "epss", "scoring_elements": "0.07396", "published_at": "2026-05-11T12:55:00Z" }, { "value": "0.00026", "scoring_system": "epss", "scoring_elements": "0.0741", "published_at": "2026-05-12T12:55:00Z" } ], "url": "https://api.first.org/data/v1/epss?cve=CVE-2026-26996" }, { "reference_url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-26996", "reference_id": "", "reference_type": "", "scores": [], "url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2026-26996" }, { "reference_url": "https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml", "reference_id": "", "reference_type": "", "scores": [ { "value": "7.5", "scoring_system": "cvssv3.1", "scoring_elements": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" } ], "url": "https://ftp.suse.com/pub/projects/security/yaml/suse-cvss-scores.yaml" }, { "reference_url": "https://github.com/isaacs/minimatch", "reference_id": "", "reference_type": "", "scores": [ { "value": "8.7", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://github.com/isaacs/minimatch" }, { "reference_url": "https://github.com/isaacs/minimatch/commit/2e111f3a79abc00fa73110195de2c0f2351904f5", "reference_id": "", "reference_type": "", "scores": [ { "value": "8.7", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-20T15:31:36Z/" } ], "url": "https://github.com/isaacs/minimatch/commit/2e111f3a79abc00fa73110195de2c0f2351904f5" }, { "reference_url": "https://github.com/isaacs/minimatch/security/advisories/GHSA-3ppc-4f35-3m26", "reference_id": "", "reference_type": "", "scores": [ { "value": "HIGH", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" }, { "value": "8.7", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" }, { "value": "Track", "scoring_system": "ssvc", "scoring_elements": "SSVCv2/E:N/A:Y/T:P/P:M/B:A/M:M/D:T/2026-02-20T15:31:36Z/" } ], "url": "https://github.com/isaacs/minimatch/security/advisories/GHSA-3ppc-4f35-3m26" }, { "reference_url": "https://nvd.nist.gov/vuln/detail/CVE-2026-26996", "reference_id": "", "reference_type": "", "scores": [ { "value": "8.7", "scoring_system": "cvssv4", "scoring_elements": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N" }, { "value": "HIGH", "scoring_system": "generic_textual", "scoring_elements": "" } ], "url": "https://nvd.nist.gov/vuln/detail/CVE-2026-26996" }, { "reference_url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1128579", "reference_id": "1128579", "reference_type": "", "scores": [], "url": "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1128579" }, { "reference_url": "https://bugzilla.redhat.com/show_bug.cgi?id=2441268", "reference_id": "2441268", "reference_type": "", "scores": [], "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2441268" }, { "reference_url": "https://github.com/advisories/GHSA-3ppc-4f35-3m26", "reference_id": "GHSA-3ppc-4f35-3m26", "reference_type": "", "scores": [ { "value": "HIGH", "scoring_system": "cvssv3.1_qr", "scoring_elements": "" } ], "url": "https://github.com/advisories/GHSA-3ppc-4f35-3m26" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:10184", "reference_id": "RHSA-2026:10184", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:10184" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:13508", "reference_id": "RHSA-2026:13508", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:13508" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:4942", "reference_id": "RHSA-2026:4942", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:4942" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:5168", "reference_id": "RHSA-2026:5168", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:5168" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:5665", "reference_id": "RHSA-2026:5665", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:5665" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:6192", "reference_id": "RHSA-2026:6192", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:6192" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:6497", "reference_id": "RHSA-2026:6497", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:6497" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:6567", "reference_id": "RHSA-2026:6567", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:6567" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:6568", "reference_id": "RHSA-2026:6568", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:6568" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7080", "reference_id": "RHSA-2026:7080", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7080" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7123", "reference_id": "RHSA-2026:7123", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7123" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7302", "reference_id": "RHSA-2026:7302", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7302" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7310", "reference_id": "RHSA-2026:7310", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7310" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7350", "reference_id": "RHSA-2026:7350", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7350" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7670", "reference_id": "RHSA-2026:7670", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7670" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7675", "reference_id": "RHSA-2026:7675", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7675" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7896", "reference_id": "RHSA-2026:7896", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7896" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:7983", "reference_id": "RHSA-2026:7983", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:7983" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:8339", "reference_id": "RHSA-2026:8339", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:8339" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:9711", "reference_id": "RHSA-2026:9711", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:9711" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:9742", "reference_id": "RHSA-2026:9742", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:9742" }, { "reference_url": "https://access.redhat.com/errata/RHSA-2026:9874", "reference_id": "RHSA-2026:9874", "reference_type": "", "scores": [], "url": "https://access.redhat.com/errata/RHSA-2026:9874" } ], "weaknesses": [ { "cwe_id": 1333, "name": "Inefficient Regular Expression Complexity", "description": "The product uses a regular expression with an inefficient, possibly exponential worst-case computational complexity that consumes excessive CPU cycles." }, { "cwe_id": 937, "name": "OWASP Top Ten 2013 Category A9 - Using Components with Known Vulnerabilities", "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2013." }, { "cwe_id": 1035, "name": "OWASP Top Ten 2017 Category A9 - Using Components with Known Vulnerabilities", "description": "Weaknesses in this category are related to the A9 category in the OWASP Top Ten 2017." } ], "exploits": [], "severity_range_score": "6.5 - 8.9", "exploitability": "0.5", "weighted_severity": "8.0", "risk_score": 4.0, "resource_url": "http://public2.vulnerablecode.io/vulnerabilities/VCID-hzsn-68be-dkej" }