CVE-2026-81011
Last modified
CVE-2026-81011 is a high-severity vulnerability rated 7.1/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: platform/x86: hp-bioscfg: pass validated element count to package parsers The per-type package parsers are handed the wrong element count. hp_init_bios_package_attribute() validates obj->package.count and then calls one of the five hp_populate_*_package_data() wrappers (string, integer, enumeration, ordered list, password). Each wrapper forwards a count to its hp_populate_*_elements_from_package() parser, but instead of forwarding the validated obj->package.count it derives the count from elements[0]. EPSS estimates a 0.13% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: platform/x86: hp-bioscfg: pass validated element count to package parsers The per-type package parsers are handed the wrong element count. hp_init_bios_package_attribute() validates obj->package.count and then calls one of the five hp_populate_*_package_data() wrappers (string, integer, enumeration, ordered list, password). Each wrapper forwards a count to its hp_populate_*_elements_from_package() parser, but instead of forwarding the validated obj->package.count it derives the count from elements[0]. elements[0] is the NAME field and is always an ACPI_TYPE_STRING, so reading ->package.count from it in fact reads ->string.length through the union acpi_object. The parsers thus bound themselves against the length of the name string rather than against the real number of elements in the package. This is safe today because hp_init_bios_package_attribute() refuses any package that has fewer than the type's element count, so a parser only ever runs on a full package and never reads past it regardless of the bogus bound. An upcoming change relaxes that check to accept shorter packages. Once a parser can receive fewer elements than its per-type count, a bound taken from the name length no longer reflects the array size, and the "elem < count" loop conditions and "elem + n >= count" sub-loop guards read past the end of elements[] - an out-of-bounds heap read. Forward the validated obj->package.count to every *_package_data() wrapper so the parsers bound themselves against the real package size. This does not change behaviour for the packages that enumerate correctly today and is a prerequisite for accepting shorter packages safely.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= a34fc329b1895fc8a6eb12099adc47009421ba6a, < 467e53f231f77a1677191b8cdabdaf1448439d55; >= a34fc329b1895fc8a6eb12099adc47009421ba6a, < 436017808c7cbcdb5e49b2142090d4391e3de9a6; >= a34fc329b1895fc8a6eb12099adc47009421ba6a, < a38127df99ae8b1851560b35b837c9952416143a; >= a34fc329b1895fc8a6eb12099adc47009421ba6a, < 400cbc3ccc88a5ad37cd85056224635ce9eba018; >= a34fc329b1895fc8a6eb12099adc47009421ba6a, < e0ddfd77c0c320b7d12b6c9169303b140b798775 |
| Linux | Linux | 6.6 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-81011?
How severe is CVE-2026-81011?
How do I fix CVE-2026-81011?
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-81005In the Linux kernel, the following vulnerability has been re…
- CVE-2026-81006In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-81007In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-81008In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-81009In the Linux kernel, the following vulnerability has been re…
- CVE-2026-81010In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-81012In the Linux kernel, the following vulnerability has been re…8.4
- CVE-2026-81013In the Linux kernel, the following vulnerability has been re…
- CVE-2026-81014In the Linux kernel, the following vulnerability has been re…
- CVE-2026-81015In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-81016In the Linux kernel, the following vulnerability has been re…7.7
- CVE-2026-81017In the Linux kernel, the following vulnerability has been re…8.4
Are you affected by CVE-2026-81011?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
