CVE-2026-23194
Out-of-Bounds Write in Linux Kernel rust_binder FDA Handling
Publication date: 2026-02-14
Last updated on: 2026-03-19
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 | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | 6.19 |
| linux | linux_kernel | From 6.18 (inc) to 6.18.10 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-787 | The product writes data past the end, or before the beginning, of the intended buffer. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a bug in the Linux kernel's rust_binder component related to handling FDA (file descriptor array) objects of length zero.
The issue occurs because the code incorrectly treats a skip value of zero as a special pointer fixup indicator, but zero is also a valid skip length for an empty FDA object.
When an empty FDA is at the end of a buffer, this causes an out-of-bounds write of 8 bytes, which is caught and results in an EINVAL error returned to userspace.
The fix involved replacing the zero-is-special pattern with a Rust enum to correctly handle empty FDA objects and prevent out-of-bounds errors.
How can this vulnerability impact me? :
This vulnerability can cause an out-of-bounds write in the Linux kernel when handling empty FDA objects, potentially leading to kernel errors.
The out-of-bounds write is caught and results in an error (EINVAL) returned to userspace, which may cause application failures or instability.
While the description does not explicitly mention security impacts like privilege escalation or denial of service, out-of-bounds writes in kernel code can sometimes be exploited to cause crashes or other unintended behavior.
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