Skip to content

@forgerock/login-widget-theme-0.0.0.tgz: 2 vulnerabilities (highest severity is: 7.5) #455

@mend-for-github-com

Description

@mend-for-github-com
Vulnerable Library - @forgerock/login-widget-theme-0.0.0.tgz

Path to vulnerable library: /package.json

Found in HEAD commit: 9c9e5df7acd65a26dc1f5256103404fe1fdde6c3

Vulnerabilities

Vulnerability Severity CVSS Dependency Type Fixed in (@forgerock/login-widget-theme version) Remediation Possible**
CVE-2026-33671 High 7.5 detected in multiple dependencies Transitive N/A*
CVE-2026-33672 Medium 5.3 detected in multiple dependencies Transitive N/A*

*For some transitive vulnerabilities, there is no version of direct dependency with a fix. Check the "Details" section below to see if there is a version of transitive dependency where vulnerability is fixed.

**In some cases, Remediation PR cannot be created automatically for a vulnerability despite the availability of remediation

Details

CVE-2026-33671

Vulnerable Libraries - picomatch-4.0.3.tgz, picomatch-2.3.1.tgz

picomatch-4.0.3.tgz

Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.

Library home page: https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • @forgerock/login-widget-theme-0.0.0.tgz (Root Library)
    • tailwindcss-3.4.19.tgz
      • sucrase-3.35.1.tgz
        • tinyglobby-0.2.15.tgz
          • picomatch-4.0.3.tgz (Vulnerable Library)

picomatch-2.3.1.tgz

Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.

Library home page: https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • @forgerock/login-widget-theme-0.0.0.tgz (Root Library)
    • tailwindcss-3.4.19.tgz
      • micromatch-4.0.8.tgz
        • picomatch-2.3.1.tgz (Vulnerable Library)

Found in HEAD commit: 9c9e5df7acd65a26dc1f5256103404fe1fdde6c3

Found in base branch: main

Vulnerability Details

Impact "picomatch" is vulnerable to Regular Expression Denial of Service (ReDoS) when processing crafted extglob patterns. Certain patterns using extglob quantifiers such as "+()" and "()", especially when combined with overlapping alternatives or nested extglobs, are compiled into regular expressions that can exhibit catastrophic backtracking on non-matching input. Examples of problematic patterns include "+(a|aa)", "+(|?)", "+(+(a))", "(+(a))", and "+(+(+(a)))". In local reproduction, these patterns caused multi-second event-loop blocking with relatively short inputs. For example, "+(a|aa)" compiled to "^(?:(?=.)(?:a|aa)+)$" and took about 2 seconds to reject a 41-character non-matching input, while nested patterns such as "+(+(a))" and "(+(a))" took around 29 seconds to reject a 33-character input on a modern M1 MacBook. Applications are impacted when they allow untrusted users to supply glob patterns that are passed to "picomatch" for compilation or matching. In those cases, an attacker can cause excessive CPU consumption and block the Node.js event loop, resulting in a denial of service. Applications that only use trusted, developer-controlled glob patterns are much less likely to be exposed in a security-relevant way. Patches This issue is fixed in picomatch 4.0.4, 3.0.2 and 2.3.2. Users should upgrade to one of these versions or later, depending on their supported release line. Workarounds If upgrading is not immediately possible, avoid passing untrusted glob patterns to "picomatch". Possible mitigations include: - disable extglob support for untrusted patterns by using "noextglob: true" - reject or sanitize patterns containing nested extglobs or extglob quantifiers such as "+()" and "*()" - enforce strict allowlists for accepted pattern syntax - run matching in an isolated worker or separate process with time and resource limits - apply application-level request throttling and input validation for any endpoint that accepts glob patterns Resources - Picomatch repository: https://github.com/micromatch/picomatch - "lib/parse.js" and "lib/constants.js" are involved in generating the vulnerable regex forms - Comparable ReDoS precedent: CVE-2024-4067 ("micromatch") - Comparable generated-regex precedent: CVE-2024-45296 ("path-to-regexp")

Publish Date: 2026-03-26

URL: CVE-2026-33671

CVSS 3 Score Details (7.5)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: None
    • Availability Impact: High

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2026-03-25

Fix Resolution: https://github.com/micromatch/picomatch.git - 3.0.2,https://github.com/micromatch/picomatch.git - 4.0.4,https://github.com/micromatch/picomatch.git - 2.3.2

CVE-2026-33672

Vulnerable Libraries - picomatch-2.3.1.tgz, picomatch-4.0.3.tgz

picomatch-2.3.1.tgz

Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.

Library home page: https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • @forgerock/login-widget-theme-0.0.0.tgz (Root Library)
    • tailwindcss-3.4.19.tgz
      • micromatch-4.0.8.tgz
        • picomatch-2.3.1.tgz (Vulnerable Library)

picomatch-4.0.3.tgz

Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.

Library home page: https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • @forgerock/login-widget-theme-0.0.0.tgz (Root Library)
    • tailwindcss-3.4.19.tgz
      • sucrase-3.35.1.tgz
        • tinyglobby-0.2.15.tgz
          • picomatch-4.0.3.tgz (Vulnerable Library)

Found in HEAD commit: 9c9e5df7acd65a26dc1f5256103404fe1fdde6c3

Found in base branch: main

Vulnerability Details

Impact picomatch is vulnerable to a method injection vulnerability (CWE-1321) affecting the "POSIX_REGEX_SOURCE" object. Because the object inherits from "Object.prototype", specially crafted POSIX bracket expressions (e.g., "[[:constructor:]]") can reference inherited method names. These methods are implicitly converted to strings and injected into the generated regular expression. This leads to incorrect glob matching behavior (integrity impact), where patterns may match unintended filenames. The issue does not enable remote code execution, but it can cause security-relevant logic errors in applications that rely on glob matching for filtering, validation, or access control. All users of affected "picomatch" versions that process untrusted or user-controlled glob patterns are potentially impacted. Patches This issue is fixed in picomatch 4.0.4, 3.0.2 and 2.3.2. Users should upgrade to one of these versions or later, depending on their supported release line. Workarounds If upgrading is not immediately possible, avoid passing untrusted glob patterns to picomatch. Possible mitigations include: - Sanitizing or rejecting untrusted glob patterns, especially those containing POSIX character classes like "[[:...:]]". - Avoiding the use of POSIX bracket expressions if user input is involved. - Manually patching the library by modifying "POSIX_REGEX_SOURCE" to use a null prototype: const POSIX_REGEX_SOURCE = { proto: null, alnum: 'a-zA-Z0-9', alpha: 'a-zA-Z', // ... rest unchanged }; Resources - fix for similar issue: micromatch/picomatch#144 - picomatch repository https://github.com/micromatch/picomatch

Publish Date: 2026-03-26

URL: CVE-2026-33672

CVSS 3 Score Details (5.3)

Base Score Metrics:

  • Exploitability Metrics:
    • Attack Vector: Network
    • Attack Complexity: Low
    • Privileges Required: None
    • User Interaction: None
    • Scope: Unchanged
  • Impact Metrics:
    • Confidentiality Impact: None
    • Integrity Impact: Low
    • Availability Impact: None

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2026-03-25

Fix Resolution: https://github.com/micromatch/picomatch.git - 2.3.2,https://github.com/micromatch/picomatch.git - 4.0.4,https://github.com/micromatch/picomatch.git - 3.0.2

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions