CVE-2023-53357: md/raid10: check slab-out-of-bounds in md_bitmap_get_counter
In the Linux kernel, the following vulnerability has been resolved:
md/raid10: check slab-out-of-bounds in md_bitmap_get_counter
If we write a large number to md/bitmap_set_bits, md_bitmap_checkpage()
will return -EINVAL because 'page >= bitmap->pages', but the return value
was not checked immediately in md_bitmap_get_counter() in order to set
*blocks value and slab-out-of-bounds occurs.
Move check of 'page >= bitmap->pages' to md_bitmap_get_counter() and
return directly if true.
Security readout for executives and security teams
Plain-English summary
CVE-2023-53357 is a Linux kernel flaw in MD RAID10 bitmap handling. A local, low-privileged user could trigger an out-of-bounds memory read, risking sensitive memory exposure or system instability. The source bundle says the issue is resolved in Linux stable commits, but does not show active exploitation.
Executive priority
Treat as high priority for Linux storage servers and shared environments. It is not remotely exploitable based on the provided CVSS data, but local privilege requirements still matter where many users, containers, or workloads share hosts.
Technical view
The bug is in md_bitmap_get_counter for md/raid10. A bounds failure from md_bitmap_checkpage was not checked before using block data, allowing a slab-out-of-bounds access. CVSS is 7.1 with local attack vector, low complexity, low privileges, no user interaction, high confidentiality impact, and high availability impact.
Likely exposure
Exposure is most relevant to Linux systems running affected kernels with MD RAID10 bitmap functionality. The CVE data lists Linux kernel versions and stable branch points as affected. Systems without MD RAID10 usage may have lower practical exposure, but kernel package status should drive final assessment.
Exploitation context
The provided sources do not report exploitation in the wild, and KEV status is false. The CVSS vector indicates exploitation requires local access and low privileges, with no user interaction. The bundle does not provide a public exploit or operational attack details.
Researcher notes
Evidence is limited to the CVE record, CVE List data, and Linux stable commit references. The described fix moves the page bounds check into md_bitmap_get_counter and returns immediately when the bitmap page index is out of range.
Mitigation direction
Update to a vendor kernel containing the referenced Linux stable fixes.
Prioritize shared, multi-user, hosting, and storage systems using software RAID10.
If no fixed package is available, follow distribution vendor guidance.
Reduce unnecessary local shell or container access on affected systems.
Monitor affected hosts for kernel crashes, oops events, or storage anomalies.
Validation and detection
Inventory Linux kernel versions across servers and appliances.
Identify systems using Linux MD RAID10 bitmap functionality.
Compare installed kernels against vendor advisories and fixed stable commits.
Confirm distribution packages include the upstream md/raid10 bitmap fix.
Document systems deferred from patching and their compensating controls.
Generated from the cited source records. This long-tail analysis has not been individually reviewed by a named human.
Potential ATT&CK relevance
Conservative CVE-to-ATT&CK context
These mappings and lookup hints may be relevant to the vulnerability behavior, CWE, affected product, or exposure path. Glexia-inferred context is not an official MITRE, ATT&CK, CWE, or CVE Program mapping.
ATT&CK lookup starting points
Use these exact CWE pages and searches to review the Glexia ATT&CK library from this CVE's weakness and description context.
cwe · low confidence lookup
CWE-125: Exact CWE lookup
Use the exact CWE identifier as the starting point before reviewing related ATT&CK behavior. Open the exact CWE lookup page first, then review the ATT&CK searches from that MITRE weakness context. This is a Glexia lookup hint, not an official ATT&CK mapping.
These fields come from the CVE record and ADP containers, not from Glexia's Take. They preserve time-varying source decisions such as CISA SSVC, KEV status, CVSS metrics, and provider references.
We collect every scored CVSS vector available in the official CNA and ADP containers. When more than one version is present, the table keeps the source vectors side by side instead of collapsing them into the highest score.
CWE links open Glexia weakness intelligence pages with official CWE context, developer remediation guidance, and related CVE mappings.
CWE-125 · source CWE mapping
Out-of-bounds Read
Out-of-bounds Read represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.