CVE Catalog

CVE-2026-87078

Unknown
Published: Translated: NVD NIST

Summary

Net::IDN::Punycode versions from 2.302 before 2.590 for Perl leak the output buffer on every rejected label in decode_punycode. No label length limit exists in the to-Unicode direction, allowing memory growth.

Risk Assessment

An attacker can repeatedly send invalid labels to gradually increase memory usage, eventually exhausting resources or causing service failure.

Recommendation

Update Net::IDN::Punycode to version 2.590 or later. Monitor memory usage in domain name processing applications.

Other vulnerabilities in Net::IDN::Punycode

See all
Original NVD description (English source)

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.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS