Net::CIDR::Lite versions before 0.24 for Perl does not...
Moderate severity
Unreviewed
Published
May 10, 2026
to the GitHub Advisory Database
•
Updated May 12, 2026
Description
Published by the National Vulnerability Database
May 10, 2026
Published to the GitHub Advisory Database
May 10, 2026
Last updated
May 12, 2026
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.
References