{"id":"CVE-2026-97906","title":"In the Linux kernel, the following vulnerability has been resolved:\n\nbootconfig: Fix integer overflow in initrd size check\n\nSashiko reported that in get_boot_config_from_initrd(), a crafted initrd\nwith a huge bootconfig size (such as 0xF…","summary":"In the Linux kernel, the following vulnerability has been resolved:\n\nbootconfig: Fix integer overflow in initrd size check\n\nSashiko reported that in get_boot_config_from_initrd(), a crafted initrd\nwith a huge bootconfig size (such as 0xF…","severity":"none","vendor":"Linux","product":"Linux","affected":["Linux >= de462e5f10718517bacf2f84c8aa2804567ef7df < 8d4343a411eaa182d323ab5b149496416015f27d","Linux >= de462e5f10718517bacf2f84c8aa2804567ef7df < bff9a1579e2c9b2a59fdf3793becc9d7bf5ff1a6","Linux >= de462e5f10718517bacf2f84c8aa2804567ef7df < 7812d6dab0698001e50e8c2f901e17da3eb6f429","Linux 32394df25d8e46935b442b429d74b37885c4f092","Linux >= 5.6.14 < 5.7","Linux 5.7"],"published":"2026-09-25","updated":"2026-09-25","sourceUpdated":"2026-09-25T11:17:17.517","source":"NVD","sourceUrl":"https://nvd.nist.gov/vuln/detail/CVE-2026-97906","references":[{"url":"https://git.kernel.org/stable/c/7812d6dab0698001e50e8c2f901e17da3eb6f429","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/8d4343a411eaa182d323ab5b149496416015f27d","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"},{"url":"https://git.kernel.org/stable/c/bff9a1579e2c9b2a59fdf3793becc9d7bf5ff1a6","label":"416baaa9-dc9f-4396-8d5f-8c081fb06d67"}],"tags":["nvd","cve.org"],"ingestedAt":"2026-09-25T11:06:38.893Z","slug":"CVE-2026-97906","body":"## Overview\n\nIn the Linux kernel, the following vulnerability has been resolved:\n\nbootconfig: Fix integer overflow in initrd size check\n\nSashiko reported that in get_boot_config_from_initrd(), a crafted initrd\nwith a huge bootconfig size (such as 0xFFFFFFFF) can cause the pointer\narithmetic:\n\n    data = ((void *)hdr) - size;\n\nto wrap around on 32-bit systems (or when pointer subtraction overflows).\nBecause data wraps around, the subsequent bounds check:\n\n    if ((unsigned long)data < initrd_start)\n\nevaluates to false, bypassing the check. The kernel then calls\nxbc_calc_checksum(data, size), which attempts to read 4GB of memory,\nhitting unmapped pages and triggering a fatal kernel page fault during\nearly boot. Furthermore, on 64-bit systems with an initrd > 4.29 GB, an\nunbounded 32-bit size can similarly bypass the initrd_start check.\n\nFix this by:\n1. Ensuring the initrd is at least large enough to contain the bootconfig\n   footer and verifying hdr is within the initrd bounds.\n2. Checking that size does not exceed XBC_DATA_MAX and does not exceed\n   the available space between initrd_start and hdr before performing\n   pointer subtraction.\n\n## Remediation\n\nRefer to the linked advisories for vendor-supplied fixes and affected version ranges.","depth":"sunlit","depthScore":3,"depthScoreParts":{"impact":2.8,"likelihood":0,"exploitation":0,"ransomware":0},"changes":[]}