Resolved CVE-2026-27904, CVE-2026-33532, and CVE-2026-33672.#1432
Merged
AWSHurneyt merged 3 commits intoMay 11, 2026
Conversation
This was referenced May 6, 2026
Signed-off-by: Thomas Hurney <hurneyt@amazon.com>
cc4562a to
4ea1960
Compare
Signed-off-by: Thomas Hurney <hurneyt@amazon.com>
Signed-off-by: Thomas Hurney <hurneyt@amazon.com>
Collaborator
|
The cypress workflows are failing because the backend is failing to build |
riysaxen-amzn
approved these changes
May 11, 2026
AWSHurneyt
approved these changes
May 11, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves CVE-2026-27904 (HIGH severity) by bumping the
minimatchyarn resolution to^3.1.4inpackage.json.Details
Nested
*()extglobs produce regexps with nested unbounded quantifiers (e.g.(?:(?:a|b)*)*), which exhibit catastrophic backtracking in V8. With a 12-byte pattern*(*(*(a|b)))and an 18-byte non-matching input,minimatch()stalls for over 7 seconds. Adding a single nesting level or a few input characters pushes this to minutes.This is triggered by the default
minimatch()API with no special options, and the minimum viable pattern is only 12 bytes. The same issue affects+()extglobs equally.Impact
Nested
*()extglobs produce regexps with nested unbounded quantifiers which exhibit catastrophic backtracking in V8. A 12-byte pattern with an 18-byte non-matching input stallsminimatch()for over 7 seconds. This is a HIGH severity ReDoS vulnerability affecting any context where an attacker can influence the glob pattern passed tominimatch().Fix
minimatchresolution to^3.1.4inpackage.jsonTest Plan
minimatchresolves to>=3.1.4afteryarn install