SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-80868

UNKNOWN · CVSS N/A EPSS 0.14%

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 NTFS3 implementation, specifically in the handling of inline data allocation during write operations. If inline data is not properly page-aligned, it can lead to potential data corruption or unexpected behavior. Linux system administrators and developers working with NTFS3 should prioritize applying the fix to ensure data integrity and system stability.

CVE
CVE-2026-80868
Severity
UNKNOWN
CVSS
N/A
EPSS
0.14%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: ntfs3: Allocate iomap inline_data using alloc_page This fixes a BUG reported in iomap_write_end_inline: iomap_inline_data_valid checks that the inline_data fits within a page. If the inline_data is allocated with kmemdup there's no guarantee that it's page-aligned, so the check sometimes fails. Allocate it with alloc_page to ensure it's page-aligned.