AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-72219

UNKNOWN · CVSS N/A

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's lockd component, specifically in the handling of file handles during the nlm_do_fopen() function, which can lead to memory leaks of nlm_file objects when failures occur. This issue allows clients to exploit the failure path, resulting in unbounded memory consumption due to leaked allocations. System administrators and developers managing Linux environments should prioritize addressing this vulnerability to prevent potential resource exhaustion and maintain system stability.

CVE
CVE-2026-72219
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: lockd: Plug nlm_file leak when nlm_do_fopen() fails A client can repeatedly drive nlm_do_fopen() failures by presenting file handles that the underlying export rejects. After kzalloc_obj() succeeds in nlm_lookup_file(), the freshly allocated nlm_file is not yet inserted into nlm_files[]. The nlm_do_fopen() failure path jumps to out_unlock, which releases nlm_file_mutex and returns without freeing the allocation, so each failure leaks one nlm_file. Route the failure through out_free so kfree() runs before the function returns.