CVE-2026-81014
Received Received - Intake

Heap OOB Read in HP BIOS Configuration Driver

Vulnerability report for CVE-2026-81014, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-09-11

Last updated on: 2026-09-11

Assigner: kernel.org

Description

In the Linux kernel, the following vulnerability has been resolved: platform/x86: hp-bioscfg: fix heap OOB read in sk_store() and kek_store() sk_store() and kek_store() strip a trailing newline from the sysfs write before allocating the key buffer: length = count; if (buf[length - 1] == '\n') length--; bioscfg_drv.spm_data.signing_key = kmemdup(buf, length, GFP_KERNEL); but then pass the original "count" (not "length") as the copy size to hp_wmi_perform_query(), which memcpy()s that many bytes out of the "length"-sized allocation, reading one byte past it whenever the write ends in a newline, the normal case for a shell "echo" into sysfs. KASAN confirms this directly: BUG: KASAN: slab-out-of-bounds in hp_wmi_perform_query+0x1e9/0x460 [hp_bioscfg] Read of size 28 at addr ffff88813c8e2b80 by task python3/16022 ... sk_store+0xa7/0x240 [hp_bioscfg] kernfs_fop_write_iter+0x3e1/0x5d0 ... The buggy address is located 0 bytes inside of allocated 27-byte region [ffff88813c8e2b80, ffff88813c8e2b9b) Reproduced identically for kek_store, and at multiple write sizes (28, 57, 201 bytes), each time reading exactly one byte past a kmemdup() allocation one byte smaller than the write. Fix by passing "length" instead of "count" to hp_wmi_perform_query() in both functions.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-11
Last Modified
2026-09-11
Generated
2026-09-12
AI Q&A
2026-09-12
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
hp hp_bioscfg *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-UNKNOWN

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is a heap out-of-bounds read vulnerability in the Linux kernel's hp-bioscfg driver. It occurs when writing to sysfs files where a newline is stripped from input but the original size is incorrectly used for memory copying, causing a buffer overflow of one byte.

Detection Guidance

This vulnerability is specific to the Linux kernel's hp-bioscfg module and requires kernel address sanitizer (KASAN) to detect heap out-of-bounds reads. Check kernel logs for KASAN warnings like 'slab-out-of-bounds' errors related to hp_bioscfg. No direct network detection commands are applicable.

Impact Analysis

An attacker with local access could exploit this to read sensitive kernel memory, potentially leaking information or causing system instability. It requires write access to sysfs entries exposed by the hp-bioscfg driver.

Mitigation Strategies

Apply the Linux kernel patch that fixes the issue in sk_store() and kek_store() functions by passing the correct buffer length. Update the hp-bioscfg driver to the patched version. Monitor vendor advisories for updates.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-81014. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart