Security Advisories (1)
CVE-2026-8669 (2026-05-15)

Imager versions through 1.030 for Perl allow a heap out of bounds (OOB) write on crafted multi-frame GIF files. Imager::File::GIF's i_readgif_multi_low allocates a single per-row buffer GifRow sized for the GIF's global screen width 'SWidth' and reuses it across every image in the file. The page-match branch validates Image.Width + Image.Left > SWidth before each DGifGetLine write, but the parallel skip-image branch at imgif.c:790-805 calls DGifGetLine(GifFile, GifRow, Width) with no such check.

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>