Description
JavaScript::Minifier::XS versions before 0.16 for Perl leak memory on every call to minify(), allowing unbounded memory growth.

In JsMinify (XS.xs) the cleanup frees only the NodeSet structures and never the per-token contents buffers allocated in JsSetNodeContents; JsDiscardNode unlinks nodes without freeing their contents. Each token's contents buffer is therefore leaked on every call, and the two early returns taken when the node list is empty leak the whole NodeSet.

A long-lived process that minifies repeatedly, such as an asset pipeline or a server-side minifier endpoint, grows in memory without bound until it exhausts available memory and is killed, causing denial of service.
Published: 2026-06-29
Score: 7.5 High
EPSS: n/a
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability stems from a memory‑leak in JavaScript::Minifier::XS before version 0.16. Internally, token contents buffers are never freed after minification, causing each call to retain the buffer data. Additionally, early returns when the node list is empty leak the entire NodeSet. Over time a long‑lived process that repeatedly calls the minify function will grow its memory footprint without bound until it exhausts the system’s available memory and is terminated. The impact is a denial of service that disrupts services consuming the library.

Affected Systems

The affected product is GTERMARS:JavaScript::Minifier::XS. All installations of the module earlier than release 0.16 are vulnerable. Systems that host asset pipelines, web servers, or any server‑side code that repeatedly minifies JavaScript will be impacted, particularly long‑lived Perl processes.

Risk and Exploitability

The exploitability requires repeated usage of the minify API. An attacker who can invoke the vulnerable function multiple times—such as through a malicious upload or automated request to a minifier endpoint—can cause the targeted process to consume memory until it fails. The EPSS score is unavailable and the CVE is not listed in the CISA KEV catalog, but the CVSS score of 7.5 indicates a high severity because it leads to service disruption. The risk is primarily local or within the application, but any attacker who can influence the usage patterns of the minifier may trigger a denial of service. The lack of remote‑execution capabilities does not reduce its impact on availability for affected services.

Generated by OpenCVE AI on June 29, 2026 at 22:26 UTC.

Remediation

Vendor Solution

Upgrade to JavaScript::Minifier::XS version 0.16 or later.


OpenCVE Recommended Actions

  • Upgrade JavaScript::Minifier::XS to version 0.16 or later
  • If an upgrade is not immediately possible, reset the minifier state or restart the process after a fixed number of minification calls to prevent unbounded memory growth
  • Implement request‑level or system‑level limits that throttle or reject excessive minification requests to control resource consumption

Generated by OpenCVE AI on June 29, 2026 at 22:26 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Mon, 29 Jun 2026 21:30:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.5, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H'}

ssvc

{'options': {'Automatable': 'yes', 'Exploitation': 'none', 'Technical Impact': 'partial'}, 'version': '2.0.3'}


Mon, 29 Jun 2026 20:15:00 +0000

Type Values Removed Values Added
Description JavaScript::Minifier::XS versions before 0.16 for Perl leak memory on every call to minify(), allowing unbounded memory growth. In JsMinify (XS.xs) the cleanup frees only the NodeSet structures and never the per-token contents buffers allocated in JsSetNodeContents; JsDiscardNode unlinks nodes without freeing their contents. Each token's contents buffer is therefore leaked on every call, and the two early returns taken when the node list is empty leak the whole NodeSet. A long-lived process that minifies repeatedly, such as an asset pipeline or a server-side minifier endpoint, grows in memory without bound until it exhausts available memory and is killed, causing denial of service.
Title JavaScript::Minifier::XS versions before 0.16 for Perl leak memory on every call to minify(), allowing unbounded memory growth
Weaknesses CWE-400
CWE-401
References

Subscriptions

No data.

cve-icon MITRE

Status: PUBLISHED

Assigner: CPANSec

Published:

Updated: 2026-06-29T22:24:36.940Z

Reserved: 2026-06-18T11:27:09.117Z

Link: CVE-2026-56018

cve-icon Vulnrichment

Updated: 2026-06-29T20:53:09.308Z

cve-icon NVD

No data.

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-06-29T22:30:05Z

Weaknesses
  • CWE-400

    Uncontrolled Resource Consumption

  • CWE-401

    Missing Release of Memory after Effective Lifetime