CVE-2026-81013
Last modified
CVE-2026-81013 is a vulnerability of currently unknown severity. 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. EPSS estimates a 0.18% chance of exploitation in the next 30 days.
Description
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.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 8646a3b5ee3a5b384a22a721f37c24274d974045, < 21243c15e1d31f0df1517435e3a7784747f19043; >= 8646a3b5ee3a5b384a22a721f37c24274d974045, < cecb8154bd5fa6c8ddbd1a4e8216bbc0f0eb9828; >= 8646a3b5ee3a5b384a22a721f37c24274d974045, < 0f9aad08424882dd5714b53d29ae044060890752; >= 8646a3b5ee3a5b384a22a721f37c24274d974045, < b699e5c1f63a9e79946c35598c8a6f7af2c356b8; >= 8646a3b5ee3a5b384a22a721f37c24274d974045, < 2b2ec354f905c14e3270e8ec3ab50f7d8ad73bab |
| Linux | Linux | 6.6 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-81013?
How severe is CVE-2026-81013?
How do I fix CVE-2026-81013?
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-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-81011In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-81012In the Linux kernel, the following vulnerability has been re…8.4
- 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
- CVE-2026-81018In the Linux kernel, the following vulnerability has been re…
- CVE-2026-81019wolfProvider before 1.2.2 generates the 8-byte explicit AES-…7.4
Are you affected by CVE-2026-81013?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
