VYPR
Unrated severityNVD Advisory· Published Dec 24, 2025· Updated Apr 15, 2026

CVE-2023-53990

CVE-2023-53990

Description

In the Linux kernel, the following vulnerability has been resolved:

SMB3: Add missing locks to protect deferred close file list

cifs_del_deferred_close function has a critical section which modifies the deferred close file list. We must acquire deferred_lock before calling cifs_del_deferred_close function.

AI Insight

LLM-synthesized narrative grounded in this CVE's description and references.

Missing lock protection in cifs_del_deferred_close leads to a race condition on the deferred close file list in the Linux kernel's SMB3 client.

Vulnerability

CVE-2023-53990 is a missing lock vulnerability in the Linux kernel's CIFS (SMB3) client file system (cifs). The function cifs_del_deferred_close modifies the deferred close file list without holding the deferred_lock mutex. This critical section must be protected to prevent concurrent access from corrupting the list [1][2].

Exploitation

An attacker with local access and the ability to trigger SMB3 file operations (e.g., opening and closing files) could exploit this race condition. The attack requires precise attack surface requires the attacker to be able to execute code on the system and cause concurrent calls to the deferred close path. No special network position on the network is required beyond local user access.## Impact

Successful exploitation could lead to a use-after-free or list corruption, potentially resulting in a kernel crash (denial of service) or, in some cases, arbitrary code execution with kernel privileges. The vulnerability is classified as a high-severity issue due to the missing synchronization.## Mitigation

The fix adds the necessary deferred_lock acquisition before calling cifs_del_deferred_close. Patches have been applied to the stable kernel trees [1][2]. Users should update to the latest kernel versions to mitigate the risk.

AI Insight generated on May 19, 2026. Synthesized from this CVE's description and the cited reference URLs; citations are validated against the source bundle.

Affected products

1

Patches

5

Vulnerability mechanics

Generated on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

5

News mentions

0

No linked articles in our index yet.