CVE-2023-54006
Data Race Vulnerability in Linux Kernel af_unix Component
Publication date: 2025-12-24
Last updated on: 2025-12-24
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a data race condition in the Linux kernel's AF_UNIX socket implementation. Specifically, the variable unix_tot_inflight is modified under a spin lock but read without any locking, leading to potential concurrent access issues. The fix involves using READ_ONCE() to safely read unix_tot_inflight, preventing race conditions detected by the Kernel Concurrency Sanitizer.
How can this vulnerability impact me? :
The data race could lead to inconsistent or corrupted state in the AF_UNIX socket subsystem, potentially causing kernel instability, crashes, or unpredictable behavior in applications relying on UNIX domain sockets. This could affect system reliability and security.