CVE-2026-53385 Details
Description
In the Linux kernel, the following vulnerability has been resolved: vc_screen: fix null-ptr-deref in vcs_notifier() during concurrent vcs_write A KASAN null-ptr-deref was observed in vcs_notifier(): BUG: KASAN: null-ptr-deref in vcs_notifier+0x98/0x130 Read of size 2 at addr qmp_cmd_name: qmp_capabilities, arguments: {} The issue is a race condition in vcs_write(). When the console_lock is temporarily dropped (to copy data from userspace), the vc_data pointer obtained from vcs_vc() may become stale. After re-acquiring the lock, vcs_vc() is called again to re-validate the pointer. If the vc has been deallocated in the meantime, vcs_vc() returns NULL, and the while loop breaks (with written > 0). However, after the loop, vcs_scr_updated(vc) is still called with the now-NULL vc pointer, leading to a null pointer dereference in the notifier chain (vcs_notifier dereferences param->vc). Fix this by adding a NULL check for vc before calling vcs_scr_updated().
A race condition vulnerability has been identified in the Linux kernel's virtual console screen driver, specifically within the 'vcs_write' function. This issue arises when the 'console_lock' is temporarily released to transfer data from userspace, potentially causing the 'vc_data' pointer to become outdated. If the associated virtual console has been deallocated before the pointer is re-validated, a null pointer dereference occurs in the 'vcs_notifier' function, leading to a crash. The vulnerability affects the Linux kernel stable tree.
Users can upgrade to the latest version of the Linux kernel stable tree, where this vulnerability has been addressed. Instructions for downloading the patched version are available on the official Linux kernel website.
Metrics
CVSS 4.0 Severity and Vector Strings:
No CVSS 4.0 data is available for this CVE.
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
No SSVC data is available for this CVE.
References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://git.kernel.org/stable/c/09a43e81279b8da15526da09877134b8bcf618b0 | kernel.org | Patch |
| https://git.kernel.org/stable/c/43a6281790273c1b0a9ab76609ff0245b968f1e6 | kernel.org | Patch |
| https://git.kernel.org/stable/c/73049768ad57145acd337102c5aa3c788e6642c8 | kernel.org | Patch |
| https://git.kernel.org/stable/c/74be188eb2dc1c99d63986167b9a67d415fe7326 | kernel.org | Patch |
| https://git.kernel.org/stable/c/7cc3dd79777f6ae4625ec37e84dd18a26dc88bde | kernel.org | Patch |
| https://git.kernel.org/stable/c/8232fca738011ca2ec865b46ec721d1796dc0580 | kernel.org | Patch |
| https://git.kernel.org/stable/c/a287620312dc6dcb9a093417a0e589bf30fcf38a | kernel.org | Patch |
| https://git.kernel.org/stable/c/b6bbb85cf45bf0b070e741997fe0af3a772c5ad5 | kernel.org | Patch |
| https://git.kernel.org/stable/c/ff4806202749a51938236214adc0281481a57366 | kernel.org | Patch |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-476 | NULL Pointer Dereference | [email protected] |
Affected Products
| Product | Versions |
|---|---|
| linux linux kernel | >= 4.14.327, < 4.15 >= 4.19.284, < 4.20 >= 5.4.244, < 5.5 >= 5.10.181, < 5.10.260 >= 5.15.113, < 5.15.211 >= 6.1.30, < 6.1.177 >= 6.3.4, < 6.4 >= 6.4.1, < 6.6.144 >= 6.7, < 6.12.95 >= 6.13, < 6.18.37 >= 6.19, < 7.0.14 >= 7.1, < 7.1.2 6.4 - 6.4 rc3 6.4 rc4 6.4 rc5 6.4 rc6 6.4 rc7 |
CPE
Remediation
| |
Change History
3 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 17, 2026 | CVE Modified | kernel.org |
| Jul 29, 2026 | Initial Analysis | [email protected] |
| Jul 19, 2026 | New CVE Received | kernel.org |