Back to overview

CVE-2026-47667

HIGH
7.5
CVSS 3.1
Description
CImg Library is a C++ library for image processing. Prior to version 4.0.0 in `_load_analyze()`, the header_size field is read as an `unsigned int` from the first 4 bytes of an Analyze/NIfTI file and passed directly to `new unsigned char[header_size]` without being bounded against the actual file size. A value up to ~4 GB is accepted. If the subsequent `fread` returns `short` as it will for any malformed file), the function throws a `CImgIOException` and the allocated buffer is never freed. A 6-byte crafted file is sufficient to trigger an allocation of ~1.3 GB per call, with the full allocation leaked on every error path. The issue is reachable via `load_analyze()` and the generic `load()` when the file extension is .hdr, .img, or .nii. Version 4.0.0 fixes the issue.

Metadata

CVE ID
CVE-2026-47667
State
PUBLISHED
Assigner
GitHub_M
Reserved
2026-05-19 21:10 UTC
Published
2026-07-21 19:57 UTC
Last updated
2026-07-21 19:57 UTC
Primary CWE
CWE-401
CWE-401: Missing Release of Memory after Effective Lifetime
Vendor / Product
GreycLab / CImg
Sources
cve.org  ·  NVD

Severity & Metrics

7.5 HIGH CVSS 3.1
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Affected products (1)
VendorProductPlatformVersions
GreycLab CImg < 4.0.0
Weakness (CWE)
CWESourceDescription
CWE-1284 cna CWE-1284: Improper Validation of Specified Quantity in Input
CWE-401 cna CWE-401: Missing Release of Memory after Effective Lifetime
CWE-789 cna CWE-789: Memory Allocation with Excessive Size Value
CVSS scores (1)
ScoreSeverityVersionSourceVector
7.5 HIGH 3.1 cna CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
References (3)
Back to overview