---
id: CVE-2026-74765
title: >-
  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 in…
summary: >-
  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 in…
severity: medium
cvss: 6.5
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:L'
cwe:
  - CWE-125
  - CWE-190
product: Net-IDN-Encode
affected:
  - Net-IDN-Encode < 2.590
published: '2026-09-22'
updated: '2026-09-22'
sourceUpdated: '2026-09-22T19:07:00.983'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-74765'
references:
  - url: 'https://datatracker.ietf.org/doc/html/rfc3492#section-6.4'
    label: 9b29abf9-4ab0-4765-b253-1875cd9b441e
  - url: >-
      https://github.com/robrwo/Net-IDN-Encode/commit/27a91ccdb6c9b41f75ba198f5ae154d14e225de2.patch
    label: 9b29abf9-4ab0-4765-b253-1875cd9b441e
  - url: >-
      https://github.com/robrwo/Net-IDN-Encode/commit/81c7f99fe7430bdc5116081508dffdb56f376861.patch
    label: 9b29abf9-4ab0-4765-b253-1875cd9b441e
  - url: >-
      https://github.com/robrwo/Net-IDN-Encode/commit/89d5aa8d3504c5e96061ab76d1541a89c16157cf.patch
    label: 9b29abf9-4ab0-4765-b253-1875cd9b441e
  - url: 'https://metacpan.org/release/PJCJ/Net-IDN-Encode-2.590-TRIAL/changes'
    label: 9b29abf9-4ab0-4765-b253-1875cd9b441e
  - url: 'http://www.openwall.com/lists/oss-security/2026/09/22/11'
    label: af854a3a-2127-422b-91ae-364da2661108
tags:
  - nvd
  - cve.org
ssvc:
  exploitation: none
  automatable: 'yes'
  technicalImpact: partial
  timestamp: '2026-09-22T13:50:07.818961Z'
ingestedAt: '2026-09-22T08:00:27.701Z'
epss: 0.00296
epssPercentile: 0.22548
---

## Overview

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) * (h+1)` has no overflow check, so a large enough code point wraps the delta and the digit index leaves the range of the 36-entry digit table. The bound before the final table access tests only for an index above 36, so a negative index passes it, as does 36 itself. Perl strings hold code points beyond the Unicode range, and one such code point overflows the accumulation on its own. Valid input wraps it as well, for example 1927 ASCII letters followed by U+10FFFF. The conversion functions encode a label before they check its length, so a long label reaches the encoder through the documented API.

Only the XS backend is affected.

Encoding an attacker-supplied string copies a byte from outside the digit table into the encoded result or crashes the process.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
