Description
Net::IDN::Punycode versions from 2.302 before 2.590 for Perl leak the output buffer on every rejected label in decode_punycode.

The XS backend allocates the scalar it returns before it validates the input, sizing the buffer at twice the input length. The scalar is released only on the success path, so each of the three croaks that reject a label leaves the scalar and its buffer allocated. Nothing bounds the label length in the to-Unicode direction, since the 63-byte DNS limit is checked only when converting to ASCII.

Only the XS backend is affected.

A sender who supplies invalid labels grows the process by twice the label length per rejected call, with no successful call needed.
Published: 2026-09-22
Score: 9.1 Critical
EPSS: < 1% Very Low
KEV: No
Impact: Memory Leak leading to Denial of Service
Action: Patch Immediately
AI Analysis

Impact

The vulnerability arises in the XS backend of the Net::IDN::Punycode Perl module, where the output scalar is allocated before input validation. A rejected label results in memory allocation that is never freed, leaking twice the label length per call. Repeated injections of invalid labels can cause state‑ful memory bloat and eventually a denial‑of‑service. The weakness is CWE‑401, a memory leak, and it has no immediate impact on data confidentiality or integrity.

Affected Systems

The affected software is the Net::IDN::Punycode Perl module, only the XS backend. Versions from 2.302 up to but not including 2.590 are vulnerable. The recommended fix is to upgrade to Net-IDN-Encode 2.590‑TRIAL or later, which replaces the defective XS implementation.

Risk and Exploitability

Because no authentication or privilege escalation is required, the attack vector is to supply crafted domain labels to any path that calls decode_punycode. Each failure allocates memory that remains resident, so a hostile user can trigger repeated memory growth that may exhaust system resources. The EPSS score is < 1% and the vulnerability is not listed in the CISA KEV catalog, and with a CVSS score of 9.1 the lack of defensive bounds makes it a high‑impact denial‑of‑service risk in exposed services.

Generated by OpenCVE AI on September 22, 2026 at 15:41 UTC.

Remediation

Vendor Solution

Upgrade to Net-IDN-Encode 2.590-TRIAL or later.


OpenCVE Recommended Actions

  • Upgrade to Net-IDN-Encode 2.590‑TRIAL or later to eliminate the memory‑leak bug.
  • Ensure that any deployment of Net::IDN::Punycode uses the patched version and that the XS backend is enabled.
  • Add caller‑side validation of domain labels to enforce the 63‑byte DNS limit before invoking decode_punycode, which limits the size of rejected labels and mitigates memory growth.
  • Configure system resource limits (ulimit) for the affected processes to contain any accidental memory over‑use.

Generated by OpenCVE AI on September 22, 2026 at 15:41 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Tue, 22 Sep 2026 18:30:00 +0000

Type Values Removed Values Added
References

Tue, 22 Sep 2026 13:30:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

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

ssvc

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


Tue, 22 Sep 2026 07:30:00 +0000

Type Values Removed Values Added
Description Net::IDN::Punycode versions from 2.302 before 2.590 for Perl leak the output buffer on every rejected label in decode_punycode. The XS backend allocates the scalar it returns before it validates the input, sizing the buffer at twice the input length. The scalar is released only on the success path, so each of the three croaks that reject a label leaves the scalar and its buffer allocated. Nothing bounds the label length in the to-Unicode direction, since the 63-byte DNS limit is checked only when converting to ASCII. Only the XS backend is affected. A sender who supplies invalid labels grows the process by twice the label length per rejected call, with no successful call needed.
Title Net::IDN::Punycode versions from 2.302 before 2.590 for Perl leak the output buffer on every rejected label in decode_punycode
Weaknesses CWE-401
References

Subscriptions

No data.

cve-icon MITRE

Status: PUBLISHED

Assigner: CPANSec

Published:

Updated: 2026-09-22T17:07:27.357Z

Reserved: 2026-09-08T19:22:20.005Z

Link: CVE-2026-87078

cve-icon Vulnrichment

Updated: 2026-09-22T17:07:27.357Z

cve-icon NVD

Status : Deferred

Published: 2026-09-22T08:16:40.530

Modified: 2026-09-22T19:07:00.983

Link: CVE-2026-87078

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-22T15:45:17Z

Weaknesses
  • CWE-401

    Missing Release of Memory after Effective Lifetime