Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

suse-cvrf логотип

SUSE-SU-2026:2113-1

Опубликовано: 29 мая 2026
Источник: suse-cvrf

Описание

Security update for perl-Net-CIDR-Lite

This update for perl-Net-CIDR-Lite fixes the following issues

  • CVE-2026-45190: improper validation of trailing newlines or non-ASCII digits can lead to IP ACL bypass (bsc#1264710).
  • CVE-2026-45191: extraneous leading zeros in CIDR mask values can lead to IP ACL bypass (bsc#1264709).
  • CVE-2026-40198: missing validation for the IPv6 group count can lead to IP ACL bypass (bsc#1262088).
  • CVE-2026-40199: mishandled IPv4 mapped IPv6 addresses can lead to IP ACL bypass (bsc#1262088).

Список пакетов

SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise Module for Development Tools 15 SP7
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise Server 15 SP4-LTSS
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise Server 15 SP5-LTSS
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise Server 15 SP6-LTSS
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise Server for SAP Applications 15 SP4
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise Server for SAP Applications 15 SP5
perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise Server for SAP Applications 15 SP6
perl-Net-CIDR-Lite-0.21-150100.6.8.1

Описание

Net::CIDR::Lite versions before 0.23 for Perl does not validate IPv6 group count, which may allow IP ACL bypass. _pack_ipv6() does not check that uncompressed IPv6 addresses (without ::) have exactly 8 hex groups. Inputs like "abcd", "1:2:3", or "1:2:3:4:5:6:7" are accepted and produce packed values of wrong length (3, 7, or 15 bytes instead of 17). The packed values are used internally for mask and comparison operations. find() and bin_find() use Perl string comparison (lt/gt) on these values, and comparing strings of different lengths gives wrong results. This can cause find() to incorrectly report an address as inside or outside a range. Example: my $cidr = Net::CIDR::Lite->new("::/8"); $cidr->find("1:2:3"); # invalid input, incorrectly returns true This is the same class of input validation issue as CVE-2021-47154 (IPv4 leading zeros) previously fixed in this module. See also CVE-2026-40199, a related issue in the same function affecting IPv4 mapped IPv6 addresses.


Затронутые продукты
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:perl-Net-CIDR-Lite-0.21-150100.6.8.1

Ссылки

Описание

Net::CIDR::Lite versions before 0.23 for Perl mishandles IPv4 mapped IPv6 addresses, which may allow IP ACL bypass. _pack_ipv6() includes the sentinel byte from _pack_ipv4() when building the packed representation of IPv4 mapped addresses like ::ffff:192.168.1.1. This produces an 18 byte value instead of 17 bytes, misaligning the IPv4 part of the address. The wrong length causes incorrect results in mask operations (bitwise AND truncates to the shorter operand) and in find() / bin_find() which use Perl string comparison (lt/gt). This can cause find() to incorrectly match or miss addresses. Example: my $cidr = Net::CIDR::Lite->new("::ffff:192.168.1.0/120"); $cidr->find("::ffff:192.168.2.0"); # incorrectly returns true This is triggered by valid RFC 4291 IPv4 mapped addresses (::ffff:x.x.x.x). See also CVE-2026-40198, a related issue in the same function affecting malformed IPv6 addresses.


Затронутые продукты
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:perl-Net-CIDR-Lite-0.21-150100.6.8.1

Ссылки

Описание

Net::CIDR::Lite versions before 0.24 for Perl does not properly validate IP address and CIDR mask inputs, which may allow IP ACL bypass. Inputs containing a trailing newline or non-ASCII digit characters pass the validators but are then re-encoded by the parser to a different address than the input string spelled. find() and bin_find() can match or miss addresses as a result. Example: my $cidr = Net::CIDR::Lite->new(); $cidr->add("::1\n/128"); $cidr->find("::1a"); # incorrectly returns true See also CVE-2026-45191.


Затронутые продукты
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:perl-Net-CIDR-Lite-0.21-150100.6.8.1

Ссылки

Описание

Net::CIDR::Lite versions before 0.24 for Perl does not properly consider extraneous zero characters in CIDR mask values, which may allow IP ACL bypass. Mask forms like "/00" and "/01" pass validation and parse to the same prefix as their unpadded value. See also CVE-2026-45190.


Затронутые продукты
SUSE Linux Enterprise High Performance Computing 15 SP4-ESPOS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP4-LTSS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-ESPOS:perl-Net-CIDR-Lite-0.21-150100.6.8.1
SUSE Linux Enterprise High Performance Computing 15 SP5-LTSS:perl-Net-CIDR-Lite-0.21-150100.6.8.1

Ссылки
Уязвимость SUSE-SU-2026:2113-1