VYPR

Net-IDN-Encode

by Rrwo

Source repositories

CVEs (8)

  • CVE-2016-15059CriSep 22, 2026
    risk 0.57cvss 9.8epss 0.00

    Net::IDN::Punycode versions before 2.301 for Perl allow a heap buffer overflow via unchecked writes past the output buffer in encode_punycode. The XS backend builds the encoded label in the string buffer of the scalar it returns, sized from the input length. The loop that emits…

  • CVE-2026-87080CriSep 22, 2026
    risk 0.52cvss 9.1epss 0.00

    Net::IDN::Punycode::PP versions before 2.590 for Perl decode a truncated label to a name containing a character it never encoded in decode_punycode. The pure-Perl decoder reads one digit at a time with four-argument substr and tests the result with defined to detect the end of…

  • CVE-2026-87078CriSep 22, 2026
    risk 0.52cvss 9.1epss 0.00

    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…

  • CVE-2026-74766HigSep 22, 2026
    risk 0.48cvss 8.4epss 0.00

    Net::IDN::Punycode versions from 2.301 before 2.590 for Perl allow a heap use-after-free via a decoded code point that reallocates the output buffer in decode_punycode. The XS backend inserts each decoded code point into the string buffer of the scalar it returns.…

  • CVE-2026-87082HigSep 22, 2026
    risk 0.42cvss 7.5epss 0.00

    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…

  • CVE-2026-87081HigSep 22, 2026
    risk 0.42cvss 7.5epss 0.00

    Net::IDN::UTS46 versions before 2.590 for Perl allow CPU exhaustion via quadratic punycode encoding of an overlong label before the length check in to_ascii. to_ascii punycode encodes each label and only then applies the 63-byte DNS limit. encode_punycode in both backends…

  • CVE-2026-87079HigSep 22, 2026
    risk 0.42cvss 7.5epss 0.00

    Net::IDN::Punycode versions before 2.590 for Perl allow CPU exhaustion via quadratic insertion cost when decoding a long label in decode_punycode. The XS backend inserts each decoded code point into a UTF-8 buffer and finds the insertion point by scanning that buffer from the…

  • CVE-2026-74765MedSep 22, 2026
    risk 0.35cvss 6.5epss 0.00

    Net::IDN::Punycode versions before 2.590 for Perl allow an out-of-bounds read via integer overflow of the delta accumulator in encode_punycode. The XS backend keeps the punycode delta, and the digit index derived from it, in a signed int. The accumulation `delta += (m-n) *…