CVE-2026-97926
Last modified
CVE-2026-97926 is a high-severity vulnerability rated 7/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: ufs: validate cylinder group metadata before caching it ufs_read_cylinder() copies the cylinder group index and the rotor positions straight from the on-disk group and caches them without any check: ucpi->c_cgx = fs32_to_cpu(sb, ucg->cg_cgx); ucpi->c_rotor = fs32_to_cpu(sb, ucg->cg_rotor); ucpi->c_frotor = fs32_to_cpu(sb, ucg->cg_frotor); ucpi->c_irotor = fs32_to_cpu(sb, ucg->cg_irotor); They are then used as indices during allocation and free: - c_cgx indexes the cylinder summary array as UFS_SB(sb)->fs_cs(ucpi->c_cgx), so a value past s_ncg writes a 32 bit count outside the s_csp allocation. - c_frotor becomes a bitmap scan start, start = c_frotor >> 3, and then length = ((s_fpg + 7) >> 3) - start. A start beyond the block bitmap wraps the unsigned length to a huge value, so ubh_scanc() walks far past the cylinder group buffers.
Description
In the Linux kernel, the following vulnerability has been resolved: ufs: validate cylinder group metadata before caching it ufs_read_cylinder() copies the cylinder group index and the rotor positions straight from the on-disk group and caches them without any check: ucpi->c_cgx = fs32_to_cpu(sb, ucg->cg_cgx); ucpi->c_rotor = fs32_to_cpu(sb, ucg->cg_rotor); ucpi->c_frotor = fs32_to_cpu(sb, ucg->cg_frotor); ucpi->c_irotor = fs32_to_cpu(sb, ucg->cg_irotor); They are then used as indices during allocation and free: - c_cgx indexes the cylinder summary array as UFS_SB(sb)->fs_cs(ucpi->c_cgx), so a value past s_ncg writes a 32 bit count outside the s_csp allocation. - c_frotor becomes a bitmap scan start, start = c_frotor >> 3, and then length = ((s_fpg + 7) >> 3) - start. A start beyond the block bitmap wraps the unsigned length to a huge value, so ubh_scanc() walks far past the cylinder group buffers. c_irotor drives the inode bitmap the same way. A crafted image can set any of these freely, turning an ordinary allocation into an out of bounds access. Reject a cylinder group whose recorded index does not match the group being read, or whose rotors fall outside the group, before the metadata is cached. Valid filesystems keep cg_cgx equal to the group number and the rotors within the group, so only malformed images are rejected.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 5902a95066883cf96fa15b2680694fc5dd0c7d11; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < 87b12dc360a002eb2d498aa4f01e84347019612d; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < abde9eb33106850dfa367ad3965d3588bb8558d5; >= 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2, < c9d263be26806d388129fab8c6904bed197fc6af |
| Linux | Linux | 2.6.12 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97926?
How severe is CVE-2026-97926?
How do I fix CVE-2026-97926?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-97920In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97921In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97922In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97923In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97924In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97925In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97927In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97928In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97929In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9793A flaw was found in Keycloak. When a JSON Web Encryption (JW…7.5
- CVE-2026-97930In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97931In the Linux kernel, the following vulnerability has been re…7
Are you affected by CVE-2026-97926?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
