Skip to content

jest-environment-jsdom-29.7.0.tgz: 5 vulnerabilities (highest severity is: 8.7) #8

Description

@mend-bolt-for-github
Vulnerable Library - jest-environment-jsdom-29.7.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Found in HEAD commit: 106e853ed865122563f01f3abe24af9f610a74e6

Vulnerabilities

Vulnerability Severity CVSS Dependency Type Fixed in (jest-environment-jsdom version) Remediation Possible**
CVE-2025-7783 High 8.7 form-data-4.0.0.tgz Transitive 30.0.0
CVE-2026-48779 High 7.5 ws-8.18.0.tgz Transitive N/A*
CVE-2026-12143 High 7.5 form-data-4.0.0.tgz Transitive 30.0.0
CVE-2026-45736 Medium 4.4 ws-8.18.0.tgz Transitive 30.0.0
CVE-2026-3449 Low 3.3 once-2.0.0.tgz 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-2025-7783

Vulnerable Library - form-data-4.0.0.tgz

A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications.

Library home page: https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • jest-environment-jsdom-29.7.0.tgz (Root Library)
    • jsdom-20.0.3.tgz
      • form-data-4.0.0.tgz (Vulnerable Library)

Found in HEAD commit: 106e853ed865122563f01f3abe24af9f610a74e6

Found in base branch: main

Vulnerability Details

Use of Insufficiently Random Values vulnerability in form-data allows HTTP Parameter Pollution (HPP). This vulnerability is associated with program files lib/form_data.Js.
This issue affects form-data: < 2.5.4, 3.0.0 - 3.0.3, 4.0.0 - 4.0.3.
Mend Note: The description of this vulnerability differs from MITRE.

Publish Date: 2025-07-18

URL: CVE-2025-7783

CVSS 3 Score Details (8.7)

Base Score Metrics:

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

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-fjxv-7rqg-78g4

Release Date: 2025-07-18

Fix Resolution (form-data): 4.0.4

Direct dependency fix Resolution (jest-environment-jsdom): 30.0.0

Step up your Open Source Security Game with Mend here

CVE-2026-48779

Vulnerable Library - ws-8.18.0.tgz

Library home page: https://registry.npmjs.org/ws/-/ws-8.18.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • jest-environment-jsdom-29.7.0.tgz (Root Library)
    • jsdom-20.0.3.tgz
      • ws-8.18.0.tgz (Vulnerable Library)

Found in HEAD commit: 106e853ed865122563f01f3abe24af9f610a74e6

Found in base branch: main

Vulnerability Details

ws is an open source WebSocket client and server for Node.js. All versions from 1.1.0 up to (but not including) 5.2.5, from 6.0.0 up to 6.2.4, from 7.0.0 up to 7.5.11, and from 8.0.0 up to 8.21.0 are affected by a memory exhaustion DoS vulnerability. A peer can send a high volume of exceptionally small fragments and data chunks, with modest network traffic, to force the remote peer into allocating and holding structural wrappers that consume far more memory than the default documented message-size limit, leading to process termination due to OOM. This issue has been fixed in versions 5.2.5, 6.2.4, 7.5.11, and 8.21.0.

Publish Date: 2026-06-16

URL: CVE-2026-48779

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-06-16

Fix Resolution: https://github.com/websockets/ws.git - 7.5.11,https://github.com/websockets/ws.git - 8.21.0,https://github.com/websockets/ws.git - 6.2.4,https://github.com/websockets/ws.git - 5.2.5

Step up your Open Source Security Game with Mend here

CVE-2026-12143

Vulnerable Library - form-data-4.0.0.tgz

A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications.

Library home page: https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • jest-environment-jsdom-29.7.0.tgz (Root Library)
    • jsdom-20.0.3.tgz
      • form-data-4.0.0.tgz (Vulnerable Library)

Found in HEAD commit: 106e853ed865122563f01f3abe24af9f610a74e6

Found in base branch: main

Vulnerability Details

form-data is a library for creating readable multipart/form-data streams. In versions through 4.0.5, the "field" argument to "FormData#append" and the "filename" option are concatenated verbatim into the "Content-Disposition" header without escaping carriage return (CR), line feed (LF), or double-quote (") characters. An application that passes attacker-controlled data as a field name or filename (for example, an API gateway that turns JSON object keys into multipart field names) allows the attacker to terminate the header line and inject additional headers, or to smuggle entire additional multipart parts, into the request the application forwards to a backend. This can let the attacker add or override form fields (e.g. set "is_admin=true") seen by the downstream parser. This is an instance of CWE-93 (CRLF injection). The fix escapes CR, LF, and """ as "%0D", "%0A", and "%22" in field names and filenames, matching the serialization browsers use per the WHATWG HTML multipart/form-data encoding algorithm. Exploitation requires the consuming application to use untrusted input as a field name or filename; applications that use only fixed/trusted field names are not affected. Fixed in 2.5.6, 3.0.5, and 4.0.6.

Publish Date: 2026-06-12

URL: CVE-2026-12143

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: High
    • Availability Impact: None

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: https://github.com/form-data/form-data/security/advisories/GHSA-fjwh-7mfq-fhwh

Release Date: 2026-06-12

Fix Resolution (form-data): 4.0.6

Direct dependency fix Resolution (jest-environment-jsdom): 30.0.0

Step up your Open Source Security Game with Mend here

CVE-2026-45736

Vulnerable Library - ws-8.18.0.tgz

Library home page: https://registry.npmjs.org/ws/-/ws-8.18.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • jest-environment-jsdom-29.7.0.tgz (Root Library)
    • jsdom-20.0.3.tgz
      • ws-8.18.0.tgz (Vulnerable Library)

Found in HEAD commit: 106e853ed865122563f01f3abe24af9f610a74e6

Found in base branch: main

Vulnerability Details

ws is an open source WebSocket client and server for Node.js. Prior to 8.20.1, the websocket.close() implementation is vulnerable to uninitialized memory disclosure when a TypedArray is passed as the reason argument. This vulnerability is fixed in 8.20.1.

Publish Date: 2026-05-15

URL: CVE-2026-45736

CVSS 3 Score Details (4.4)

Base Score Metrics:

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

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Origin: GHSA-58qx-3vcg-4xpx

Release Date: 2026-05-15

Fix Resolution (ws): 8.20.1

Direct dependency fix Resolution (jest-environment-jsdom): 30.0.0

Step up your Open Source Security Game with Mend here

CVE-2026-3449

Vulnerable Library - once-2.0.0.tgz

Creates a Promise that waits for a single event

Library home page: https://registry.npmjs.org/@⁠tootallnate/once/-/once-2.0.0.tgz

Path to dependency file: /package.json

Path to vulnerable library: /package.json

Dependency Hierarchy:

  • jest-environment-jsdom-29.7.0.tgz (Root Library)
    • jsdom-20.0.3.tgz
      • http-proxy-agent-5.0.0.tgz
        • once-2.0.0.tgz (Vulnerable Library)

Found in HEAD commit: 106e853ed865122563f01f3abe24af9f610a74e6

Found in base branch: main

Vulnerability Details

Versions of the package @⁠tootallnate/once before 3.0.1 are vulnerable to Incorrect Control Flow Scoping in promise resolving when AbortSignal option is used. The Promise remains in a permanently pending state after the signal is aborted, causing any await or .then() usage to hang indefinitely. This can cause a control-flow leak that can lead to stalled requests, blocked workers, or degraded application availability.

Publish Date: 2026-03-03

URL: CVE-2026-3449

CVSS 3 Score Details (3.3)

Base Score Metrics:

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

For more information on CVSS3 Scores, click here.

Suggested Fix

Type: Upgrade version

Release Date: 2026-03-03

Fix Resolution: https://github.com/TooTallNate/once.git - v2.0.1,https://github.com/TooTallNate/once.git - v3.0.1

Step up your Open Source Security Game with Mend here

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions