SEPTEMBER 20, 2026
Live Feed
Back to database
Case File

CVE-2026-64323

HIGH · CVSS 7.1 EPSS 0.16%

Source: NVD + CISA KEV + EPSS · Published 2026-07-25 · Last synced 2026-08-24

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's handling of UDF (Universal Disk Format) images, specifically in the validation of the VAT (Virtual Allocation Table) header length against the VAT inode size. An attacker can exploit this flaw by crafting a UDF image that, when mounted, leads to an out-of-bounds read due to improper checks on the lengthHeader value, potentially allowing unauthorized access to sensitive data. Organizations using Linux systems that handle UDF images should prioritize patching this vulnerability to mitigate the risk of exploitation.

CVE
CVE-2026-64323
Severity
HIGH
CVSS
7.1
EPSS
0.16%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: udf: validate VAT header length against the VAT inode size udf_load_vat() takes the virtual partition's start offset straight from the on-disk VAT 2.0 header without checking it against the VAT inode size: map->s_type_specific.s_virtual.s_start_offset = le16_to_cpu(vat20->lengthHeader); map->s_type_specific.s_virtual.s_num_entries = (sbi->s_vat_inode->i_size - map->s_type_specific.s_virtual.s_start_offset) >> 2; lengthHeader is a fully attacker-controlled 16-bit value. If it exceeds the VAT inode size, the s_num_entries subtraction underflows to a huge count, which defeats the "block > s_num_entries" bound in udf_get_pblock_virt15(); and on the ICB-inline path that function reads ((__le32 *)(iinfo->i_data + s_start_offset))[block] so a large s_start_offset indexes past the inode's in-ICB data. Mounting a crafted UDF image with a virtual (VAT) partition then triggers an out-of-bounds read. Reject a VAT whose header length does not leave room for at least one entry within the VAT inode.