AUGUST 22, 2026
Live Feed
Back to database
Case File

CVE-2026-68168

UNKNOWN · CVSS N/A EPSS 0.20%

Source: NVD + CISA KEV + EPSS · Published 2026-08-10 · Last synced 2026-08-22

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's AFS (Andrew File System) implementation, specifically within the afs_edit_dir_remove() function, which improperly retrieves block 0. This flaw could lead to inconsistencies in directory operations, potentially compromising data integrity. Linux system administrators and developers utilizing AFS should prioritize applying the fix to ensure reliable directory management and prevent potential data corruption.

CVE
CVE-2026-68168
Severity
UNKNOWN
CVSS
N/A
EPSS
0.20%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: afs: Fix afs_edit_dir_remove() to get, not find, block 0 Fix afs_edit_dir_remove() to use afs_dir_get_block() to get block 0 rather than afs_dir_find_block() as the latter caches the found block in the afs_dir_iter and may[*] switch out the page it's on if another afs_dir_find_block() is done. This parallels what afs_edit_dir_add() does. [*] There's more than one block per page.