Cyber Resilience

CVE-2026-40026

MediumPublic PoC

Published: 08 April 2026

Published
08 April 2026
Modified
17 April 2026
KEV Added
Patch
CVSS Score v4 4.8 CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:P/VC:L/VI:N/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
EPSS Score 0.0001 2.3th percentile
Risk Priority 10 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-40026 is a medium-severity Out-of-bounds Read (CWE-125) vulnerability in Sleuthkit The Sleuth Kit. Its CVSS base score is 4.8 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Malicious File (T1204.002); ranked at the 2.3th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified are NIST 800-53 RA-5 (Vulnerability Monitoring and Scanning) and SI-2 (Flaw Remediation).

Deeper analysis

The Sleuth Kit through version 4.14.0 is affected by an out-of-bounds read vulnerability (CWE-125) in its ISO9660 filesystem parser. The issue resides in the parse_susp() function, which trusts the len_id, len_des, and len_src fields from a disk image without verifying that the source data falls within the parsed SUSP block before using memcpy to copy data into a stack buffer. This allows reads past the end of the SUSP data buffer. Additionally, a zero-length SUSP entry can trigger an infinite parsing loop.

Exploitation requires local access (AV:L) with low attack complexity (AC:L), no privileges (PR:N), and user interaction (UI:R), such as opening a malicious ISO image with the affected software. Successful exploitation can result in low-impact confidentiality loss (C:L) through potential information disclosure from the out-of-bounds read, or low-impact availability disruption (A:L) via denial of service from the buffer overread or infinite loop, with no integrity impact (I:N) and unchanged scope (S:U). The overall CVSS v3.1 base score is 4.4 (Medium).

Mitigation is addressed in patches referenced in the Sleuth Kit GitHub repository, including commit a95b0ac21733b059a517aaefa667a17e1bcbdee1 and pull request #3445. Additional details are available in advisories from VulnCheck and other sources like mobasi.ai/sentinel. Security practitioners should update to a patched version of Sleuth Kit beyond 4.14.0 when analyzing disk images.

EU & UK References

Vulnerability details

The Sleuth Kit through 4.14.0 contains an out-of-bounds read vulnerability in the ISO9660 filesystem parser where the parse_susp() function trusts len_id, len_des, and len_src fields from the disk image to memcpy data into a stack buffer without verifying that the…

more

source data falls within the parsed SUSP block. An attacker can craft a malicious ISO image that causes reads past the end of the SUSP data buffer, and a zero-length SUSP entry can trigger an infinite parsing loop.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1204.002 Malicious File Execution
An adversary may rely upon a user opening a malicious file in order to gain execution.
Why these techniques?

The out-of-bounds read and infinite loop in the ISO9660 parser are triggered when a user opens a malicious ISO image with the vulnerable Sleuth Kit software, directly mapping to user execution of a malicious file.

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-40024Same product: Sleuthkit The Sleuth Kit
CVE-2026-0956Shared CWE-125
CVE-2026-21324Shared CWE-125
CVE-2026-21322Shared CWE-125
CVE-2026-27284Shared CWE-125
CVE-2026-21344Shared CWE-125
CVE-2025-62403Shared CWE-125
CVE-2025-64733Shared CWE-125
CVE-2025-62500Shared CWE-125
CVE-2026-35170Shared CWE-125

Affected Assets

sleuthkit
the sleuth kit
≤ 4.14.0

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Mandates timely identification, reporting, and correction of software flaws like the out-of-bounds read and infinite loop in Sleuth Kit's ISO9660 parser via patching.

detect

Requires vulnerability scanning and monitoring of sources to identify and prioritize remediation for CVEs such as CVE-2026-40026 in deployed Sleuth Kit instances.

prevent

Enforces validation of untrusted inputs like len_id, len_des, and len_src fields from ISO images to prevent buffer overreads in filesystem parsers.

References