SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-89687

HIGH · CVSS 7.5 EPSS 0.47%

Source: NVD + CISA KEV + EPSS · Published 2026-09-11 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's NFS server, specifically in the handling of file acquisitions where a non-opened file could be erroneously returned by the dentry_create() function. This could potentially lead to unexpected behavior or security issues, as operations may proceed on files that are not properly opened. Organizations utilizing Linux systems with NFS should prioritize this patch to mitigate any risks associated with file handling in their environments.

CVE
CVE-2026-89687
Severity
HIGH
CVSS
7.5
EPSS
0.47%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: nfsd: ensure nfsd_file_do_acquire() does not use a non-opened file ->atomic_open is permitted to return success without actually opening the file. It indicates this by calling finish_no_open(). This means dentry_create() can return a file which hasn't been opened. This is extremely unlikely as ->atomic_open handlers typically use finish_no_open() only for already existing files, and dentry_create() isn't called in that case, and the parent being locked should prevent races. However out of an abundance of caution it seems wise to teach nfsd to only use the file returned by dentry_create() if FMODE_OPENED is set, indicating that it has in fact been opened.