YAML::Syck versions before 1.38 for Perl has an out-of-bounds read.

The base60 (sexagesimal) parsing code in perl_syck.h has a buffer underflow bug in both int#base60 and float#base60 handlers. When processing the leftmost segment of a colon-separated value (e.g., the 1 in 1:30:45), the inner while loop can decrement a pointer past the start of the string buffer:

while ( colon >= ptr && *colon != ':' )
{
colon--;
}
if ( *colon == ':' ) *colon = '\0'; // colon may be ptr-1 here

When no colon is found (final/leftmost segment), colon becomes ptr-1, and the subsequent *colon dereference reads one byte before the allocated buffer.

Project Subscriptions

No data.

Advisories

No advisories yet.

Fixes

Solution

Upgrade to YAML::Syck version 1.38 or later.


Workaround

No workaround given by the vendor.

History

Tue, 12 May 2026 16:45:00 +0000

Type Values Removed Values Added
Description YAML::Syck versions before 1.38 for Perl has an out-of-bounds read. The base60 (sexagesimal) parsing code in perl_syck.h has a buffer underflow bug in both int#base60 and float#base60 handlers. When processing the leftmost segment of a colon-separated value (e.g., the 1 in 1:30:45), the inner while loop can decrement a pointer past the start of the string buffer: while ( colon >= ptr && *colon != ':' ) { colon--; } if ( *colon == ':' ) *colon = '\0'; // colon may be ptr-1 here When no colon is found (final/leftmost segment), colon becomes ptr-1, and the subsequent *colon dereference reads one byte before the allocated buffer.
Title YAML::Syck versions before 1.38 for Perl has an out-of-bounds read
Weaknesses CWE-124
References

Projects

Sign in to view the affected projects.

cve-icon MITRE

Status: PUBLISHED

Assigner: CPANSec

Published:

Updated: 2026-05-12T16:14:21.951Z

Reserved: 2026-03-28T19:33:37.653Z

Link: CVE-2026-5089

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-05-12T17:16:21.720

Modified: 2026-05-12T17:16:21.720

Link: CVE-2026-5089

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

No data.

Weaknesses