CVE-2026-23167
Race Condition in Linux Kernel NFC rfkill Device Unregistration
Publication date: 2026-02-14
Last updated on: 2026-03-18
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 5.11 (inc) to 5.15.199 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.162 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.6.123 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.7 (inc) to 6.12.69 (exc) |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.13 (inc) to 6.18.9 (exc) |
| linux | linux_kernel | From 3.2 (inc) to 5.10.249 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-362 | The product contains a concurrent code sequence that requires temporary, exclusive access to a shared resource, but a timing window exists in which the shared resource can be modified by another code sequence operating concurrently. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a race condition in the Linux kernel's NFC (Near Field Communication) subsystem, specifically involving the interaction between rfkill and the nci_unregister_device() function.
The issue occurs because the command workqueue (cmd_wq) of the NFC device (nci_dev) is destroyed before the device is fully unregistered from rfkill. This means the device remains visible via rfkill even after its command workqueue has been destroyed, leading to potential use-after-free or invalid access scenarios.
The fix involves changing the order of operations in nci_unregister_device() to unregister the device from rfkill before destroying the command workqueue, preventing the race condition.
How can this vulnerability impact me? :
This vulnerability can lead to a race condition where the NFC device's command workqueue is destroyed while the device is still visible via rfkill. This can cause kernel warnings, potential crashes, or undefined behavior in the kernel.
Such instability in the kernel could lead to denial of service (system crashes or freezes) or potentially be exploited to cause memory corruption, although no explicit exploit details are provided.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
I don't know
What immediate steps should I take to mitigate this vulnerability?
I don't know