CVE-2026-81013

Source
https://cve.org/CVERecord?id=CVE-2026-81013
Import Source
https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-81013.json
JSON Data
https://api.osv.dev/v1/vulns/CVE-2026-81013
Downstream
Published
2026-09-11T19:43:02Z
Modified
2026-09-13T03:47:17Z
Summary
platform/x86: hp-bioscfg: fix heap OOB read on empty password write
Details

In the Linux kernel, the following vulnerability has been resolved:

platform/x86: hp-bioscfg: fix heap OOB read on empty password write

validate_password_input() computes length = strlen(buf) and then checks buf[length - 1] to strip a trailing newline, without checking that length is nonzero first. Writing an empty string (a bare '\n') to current_password or new_password gives length == 0, and buf[length - 1] reads buf[-1], one byte before the heap allocation holding the copied input.

KASAN confirms this directly:

BUG: KASAN: slab-out-of-bounds in store_password_instance.constprop.0+0x223/0x2a0 [hp_bioscfg] Read of size 1 at addr ffff88811bd8da9f by task sh/13740 ... store_password_instance.constprop.0+0x223/0x2a0 [hp_bioscfg] current_password_store+0x14/0x20 [hp_bioscfg] ... The buggy address is located 23 bytes to the right of allocated 8-byte region [ffff88811bd8da80, ffff88811bd8da88)

Reproduced identically via new_password_store. Execution continues past the bad read (the garbage byte only affects whether "length" is decremented by one), so the write completes and returns success; this is a pure information read past the buffer, not a crash, but it is still an out-of-bounds access KASAN correctly flags.

Fix by only checking buf[length - 1] when length is nonzero.

Database specific
{
    "cna_assigner": "Linux",
    "osv_generated_from": "https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/81xxx/CVE-2026-81013.json"
}
References

Affected packages

Git / git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Affected ranges

Type
GIT
Repo
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
Events
Introduced
8646a3b5ee3a5b384a22a721f37c24274d974045
Fixed
cecb8154bd5fa6c8ddbd1a4e8216bbc0f0eb9828
Fixed
0f9aad08424882dd5714b53d29ae044060890752
Fixed
b699e5c1f63a9e79946c35598c8a6f7af2c356b8
Fixed
2b2ec354f905c14e3270e8ec3ab50f7d8ad73bab

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-81013.json"

Linux / Kernel

Package

Name
Kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
6.6.0
Fixed
6.12.109
Type
ECOSYSTEM
Events
Introduced
6.13.0
Fixed
6.18.50
Type
ECOSYSTEM
Events
Introduced
6.19.0
Fixed
7.2.4

Database specific

source
"https://storage.googleapis.com/cve-osv-conversion/osv-output/CVE-2026-81013.json"