PatchSiren cyber security CVE debrief
CVE-2026-23259 Linux CVE debrief
A memory leak vulnerability in the Linux kernel's io_uring subsystem could allow a local attacker to cause a denial of service condition. The flaw occurs in the read/write path when a request with an allocated iovec fails to be placed into the rw_cache during cleanup, leaving the iovec pointer unaccounted for and resulting in a memory leak. The fix introduces a return value from io_rw_recycle() to indicate whether the request was successfully recycled, enabling proper conditional freeing of the iovec.
- Vendor
- Linux
- Product
- Unknown
- CVSS
- MEDIUM 5.5
- CISA KEV
- Not listed in stored evidence
- Original CVE published
- 2026-03-18
- Original CVE updated
- 2026-05-29
- Advisory published
- 2026-03-18
- Advisory updated
- 2026-05-29
Who should care
Linux system administrators, kernel maintainers, cloud infrastructure operators, and security teams managing hosts that expose io_uring capabilities to untrusted or partially trusted local users
Technical summary
The io_uring subsystem in the Linux kernel contains a memory leak in its read/write request cleanup path. When io_req_rw_cleanup() processes a read/write request that has an allocated iovec attached, and the attempt to place that request into the rw_cache fails, the iovec pointer would previously be left unaccounted for, causing a memory leak. The resolution modifies io_rw_recycle() to return whether it successfully recycled the request, allowing the cleanup function to conditionally free the iovec only when recycling fails. This is a local vulnerability requiring privileges to submit io_uring operations, with availability impact as the primary concern.
Defensive priority
medium
Recommended defensive actions
- Apply the relevant kernel patches from the stable kernel tree to affected systems
- Upgrade to Linux kernel version 6.18.10 or later, or apply vendor-specific patched versions
- Monitor systems running io_uring-intensive workloads for abnormal memory consumption patterns
- Restart services utilizing io_uring if memory leak symptoms are observed prior to patching
- Validate kernel version and io_uring usage in containerized and virtualized environments where local access may be more broadly available
Evidence notes
The vulnerability description indicates this is a resolved Linux kernel issue in the io_uring read/write implementation. The fix modifies io_rw_recycle() to return a boolean indicating successful recycling, which io_req_rw_cleanup() uses to determine whether to free a potentially allocated iovec. Two patch commits are referenced. CPE criteria indicate affected versions from 6.10 through 6.18.10, plus 6.19 release candidates rc1 through rc6.
Sources and references
Verified primary and authoritative sources
-
CVE-2026-23259 CVE Program record
Publisher, destination, and source semantics verified
URL: https://www.cve.org/CVERecord?id=CVE-2026-23259
CVE Program - Official CVE Program record with source-provided CVE metadata.
-
CVE-2026-23259 NVD vulnerability detail
Publisher, destination, and source semantics verified
URL: https://nvd.nist.gov/vuln/detail/CVE-2026-23259
NIST National Vulnerability Database - Official NIST NVD detail page and source-specific vulnerability assessment.
Supplemental references
-
Mitigation or vendor reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/1d5f2329ab4df65c2ee011b986d8a6e05ad0f67c
416baaa9-dc9f-4396-8d5f-8c081fb06d67 - Patch
-
Mitigation or vendor reference
Unverified legacy reference
URL: https://git.kernel.org/stable/c/4b9748055457ac3a0710bf210c229d01ea1b01b9
416baaa9-dc9f-4396-8d5f-8c081fb06d67 - Patch
Methodology and review provenance
AI-assisted synthesis based on stored public vulnerability evidence. System validation, approval state, and publication status do not by themselves establish human review of this revision. PatchSiren helps prioritize defensive review and does not prove exposure or remediation on any system.