CVE Catalog

CVE-2026-87082

Unknown
Published: Translated: NVD NIST

Summary

Net::IDN::Punycode versions before 2.590 for Perl do not validate UTF-8 input in encode_punycode. A flagged string with malformed bytes can hang, crash, or return a wrong label. Only direct calls to encode_punycode are affected; the decoder is not vulnerable.

Risk Assessment

An attacker can supply malicious bytes to cause a hang or crash in applications processing domain names, leading to denial of service or incorrect name resolution.

Recommendation

Update Net::IDN::Punycode to version 2.590 or later. Ensure input passed to encode_punycode is well-formed UTF-8.

Other vulnerabilities in Net::IDN::Punycode

See all
Original NVD description (English source)

Net::IDN::Punycode versions before 2.590 for Perl hang, crash or return a wrong label via unvalidated malformed UTF-8 in encode_punycode. Neither backend checks that its input is well-formed UTF-8, so a string with the UTF-8 flag set over malformed bytes, as the :utf8 PerlIO layer produces from any malformed input, reaches the encoder unchecked. On perl 5.32 and later the XS backend reports a malformed sequence with a length of `(STRLEN)-1`, so the scan steps back one byte instead of forward and never ends. On earlier perls the XS returns a valid label for a different name. The pure-Perl backend runs a regex over the flagged string. Depending on the bytes, it aborts with SIGBUS on perl 5.28 and later, dies with a panic, or returns a wrong label. The documented conversion functions match the label against Unicode properties first and that match dies on such a string, so only a direct call to encode_punycode reaches the defect. The decoder is not affected. A direct caller encoding attacker-supplied bytes hangs, crashes or gets a label for a name the input never held.

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