CVE-2026-97906
Last modified
CVE-2026-97906 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: bootconfig: Fix integer overflow in initrd size check Sashiko reported that in get_boot_config_from_initrd(), a crafted initrd with a huge bootconfig size (such as 0xFFFFFFFF) can cause the pointer arithmetic: data = ((void *)hdr) - size; to wrap around on 32-bit systems (or when pointer subtraction overflows). Because data wraps around, the subsequent bounds check: if ((unsigned long)data < initrd_start) evaluates to false, bypassing the check. The kernel then calls xbc_calc_checksum(data, size), which attempts to read 4GB of memory, hitting unmapped pages and triggering a fatal kernel page fault during early boot.
Description
In the Linux kernel, the following vulnerability has been resolved: bootconfig: Fix integer overflow in initrd size check Sashiko reported that in get_boot_config_from_initrd(), a crafted initrd with a huge bootconfig size (such as 0xFFFFFFFF) can cause the pointer arithmetic: data = ((void *)hdr) - size; to wrap around on 32-bit systems (or when pointer subtraction overflows). Because data wraps around, the subsequent bounds check: if ((unsigned long)data < initrd_start) evaluates to false, bypassing the check. The kernel then calls xbc_calc_checksum(data, size), which attempts to read 4GB of memory, hitting unmapped pages and triggering a fatal kernel page fault during early boot. Furthermore, on 64-bit systems with an initrd > 4.29 GB, an unbounded 32-bit size can similarly bypass the initrd_start check. Fix this by: 1. Ensuring the initrd is at least large enough to contain the bootconfig footer and verifying hdr is within the initrd bounds. 2. Checking that size does not exceed XBC_DATA_MAX and does not exceed the available space between initrd_start and hdr before performing pointer subtraction.
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= de462e5f10718517bacf2f84c8aa2804567ef7df, < 8d4343a411eaa182d323ab5b149496416015f27d; >= de462e5f10718517bacf2f84c8aa2804567ef7df, < bff9a1579e2c9b2a59fdf3793becc9d7bf5ff1a6; >= de462e5f10718517bacf2f84c8aa2804567ef7df, < 7812d6dab0698001e50e8c2f901e17da3eb6f429; 32394df25d8e46935b442b429d74b37885c4f092; >= 5.6.14, < 5.7 |
| Linux | Linux | 5.7 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-97906?
How severe is CVE-2026-97906?
How do I fix CVE-2026-97906?
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-97900In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97901In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97902In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97903In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-97904In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97905In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97907In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97908In the Linux kernel, the following vulnerability has been re…
- CVE-2026-97909In the Linux kernel, the following vulnerability has been re…
- CVE-2026-9791A flaw was found in Keycloak. An authenticated user with exi…4.3
- CVE-2026-97910In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-97911In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-97906?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
