SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-80805

UNKNOWN · CVSS N/A EPSS 0.19%

Source: NVD + CISA KEV + EPSS · Published 2026-09-04 · Last synced 2026-09-19

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's XFS file system, specifically in the `xfs_attr3_leaf_verify_entry()` function, where it improperly accesses entry fields without first validating the entry pointer's bounds. This oversight can lead to out-of-bounds reads, potentially exposing sensitive information or causing system instability. Organizations utilizing the Linux kernel, particularly those relying on XFS for file management, should prioritize addressing this vulnerability to mitigate associated risks.

CVE
CVE-2026-80805
Severity
UNKNOWN
CVSS
N/A
EPSS
0.19%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: xfs: validate attr entry pointer before field access xfs_attr3_leaf_verify_entry() accesses lentry/rentry fields (namelen, valuelen) before checking if the entry pointer itself is within bounds. If nameidx is crafted to point near the end of the buffer, these field accesses can read out-of-bounds before the bounds check at name_end > buf_end is performed. Add explicit bounds checks for entry pointers before accessing their fields. Use offsetof() to check that the start of the flexible array member (nameval/name) is within bounds, which ensures all preceding fields are safe to access.