Security Advisories (1)
CVE-2026-14454 (2026-07-08)

Imager versions before 1.033 for Perl treat unsigned EXIF IFD entry counts as signed. Imager mishandled large EXIF IFD entry count values, treating them as negative numbers. This could lead to an attempt to allocate a block nearly the size of the address space, which fails and kills the process. An attacker could craft an image with EXIF data that terminates a worker process.

NAME

Imager::Color::Table - built-in Imager color table

SYNOPSIS

use Imager::Color::Table;
my @rgb = Imager::Color::Table->get($name)
  or die "Color $name not found";

DESCRIPTION

This class provides a base color table for use in resolving color names.

The table contains the standard X11 rgb.txt colors.

This table is not included as part of Imager::Color itself since it's moderately large.

There is only one method:

get
my @rgb = Imager::Color::Table->get('red')
  or die "No red found";

Retrieves a color from Imager::Color::Tables built-in color table.

AUTHOR

Tony Cook <tony@develop-help.com>