CVE-2026-89436
Last modified
CVE-2026-89436 is a high-severity vulnerability rated 7.8/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: platform/x86: panasonic-laptop: Fix sentinel write past pcc->sinf[] acpi_pcc_retrieve_biosdata() rejects SINF packages only when pcc->num_sifr is strictly less than hkey->package.count, then unconditionally writes a trailing sentinel at pcc->sinf[hkey->package.count]. But pcc->sinf[] is allocated with exactly pcc->num_sifr elements (valid indices 0..num_sifr-1), so that write needs num_sifr strictly greater than package.count to stay in bounds -- num_sifr == package.count passes the existing check but still overflows by one element. This is exactly the case probe()'s existing num_sifr++ workaround ("Some DSDT-s have an off-by-one bug where the SINF package count is one higher than the SQTY reported value") is written to accommodate: when a DSDT's SINF package count equals SQTY+1, the workaround makes num_sifr equal to package.count, which is precisely the boundary that overflows here. EPSS estimates a 0.17% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: platform/x86: panasonic-laptop: Fix sentinel write past pcc->sinf[] acpi_pcc_retrieve_biosdata() rejects SINF packages only when pcc->num_sifr is strictly less than hkey->package.count, then unconditionally writes a trailing sentinel at pcc->sinf[hkey->package.count]. But pcc->sinf[] is allocated with exactly pcc->num_sifr elements (valid indices 0..num_sifr-1), so that write needs num_sifr strictly greater than package.count to stay in bounds -- num_sifr == package.count passes the existing check but still overflows by one element. This is exactly the case probe()'s existing num_sifr++ workaround ("Some DSDT-s have an off-by-one bug where the SINF package count is one higher than the SQTY reported value") is written to accommodate: when a DSDT's SINF package count equals SQTY+1, the workaround makes num_sifr equal to package.count, which is precisely the boundary that overflows here. Found via UBSan (array-index-out-of-bounds) on hardware where HKEY.SQTY returns 37 and HKEY.SINF()'s package has 38 elements: num_sifr becomes 38 after the += 1 workaround, the loop correctly fills indices 0..37, and the sentinel write then targets index 38, one past the end -- a silent 4-byte heap overflow on kernels without CONFIG_UBSAN. Tightening the rejection check to num_sifr <= package.count would avoid the overflow but breaks probe() entirely on exactly this hardware, since num_sifr == package.count is the case the off-by-one workaround exists to support. Nothing else in the driver reads this sentinel value back, so simply skip the write when there is no room for it instead.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= a3d0dbd18ce908292607bb6cf37c978ece8a33d4, < a93df956ee4d903735b6d395362c839cb1dc07e3; >= a3d0dbd18ce908292607bb6cf37c978ece8a33d4, < 329f10d8be193bf36af124e00b9dd6644cd71724 |
| Linux | Linux | 7.2 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89436?
How severe is CVE-2026-89436?
How do I fix CVE-2026-89436?
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-89418google-protobuf contains an unbounded recursion when parsing…8.7
- CVE-2026-8942The MetaMagic SEO Plugin plugin for WordPress is vulnerable …4.3
- CVE-2026-89420Improper Validation of Specified Quantity in Input in ZenHiv…7.1
- CVE-2026-89422Key Exchange without Entity Authentication vulnerability in …9.3
- CVE-2026-89425UTF8DataInputJsonParser._reportInvalidToken() in FasterXML j…7.5
- CVE-2026-8943The GoStats for WordPress plugin for WordPress is vulnerable…4.3
- CVE-2026-89437In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89438In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89439In the Linux kernel, the following vulnerability has been re…
- CVE-2026-8944The Plugin for Google Analytics by IO technologies plugin fo…4.3
- CVE-2026-89440In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89441In the Linux kernel, the following vulnerability has been re…7.8
Are you affected by CVE-2026-89436?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
