CVE-2023-53204
BaseFortify
Publication date: 2025-09-15
Last updated on: 2025-12-04
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | From 3.2.78 (inc) to 3.3 (exc) |
| linux | linux_kernel | From 3.10.96 (inc) to 3.11 (exc) |
| linux | linux_kernel | From 3.12.57 (inc) to 3.13 (exc) |
| linux | linux_kernel | From 3.14.60 (inc) to 3.15 (exc) |
| linux | linux_kernel | From 3.18.27 (inc) to 3.19 (exc) |
| linux | linux_kernel | From 4.1.17 (inc) to 4.2 (exc) |
| linux | linux_kernel | From 4.3.5 (inc) to 4.4 (exc) |
| linux | linux_kernel | From 4.4.1 (inc) to 4.14.326 (exc) |
| linux | linux_kernel | From 4.15 (inc) to 4.19.295 (exc) |
| linux | linux_kernel | From 4.20 (inc) to 5.4.257 (exc) |
| linux | linux_kernel | From 5.5 (inc) to 5.10.195 (exc) |
| linux | linux_kernel | From 5.11 (inc) to 5.15.132 (exc) |
| linux | linux_kernel | From 5.16 (inc) to 6.1.54 (exc) |
| linux | linux_kernel | From 6.2 (inc) to 6.5.4 (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 data race in the Linux kernel's af_unix subsystem involving the user->unix_inflight variable. The variable is modified under a lock (spin_lock(unix_gc_lock)) but is read without locking in the too_many_unix_fds() function, leading to concurrent unsynchronized access. This can cause inconsistent or unexpected behavior in the kernel when handling Unix domain socket file descriptors.
How can this vulnerability impact me? :
The data race can lead to unpredictable kernel behavior, potentially causing system instability or crashes when Unix domain sockets are used. While the exact impact is not detailed, such kernel data races can affect system reliability and security.