CVE-2026-89846
Last modified
CVE-2026-89846 is a critical-severity vulnerability rated 9.1/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: scsi: qla2xxx: Bound rsp_info_len to avoid OOB sense-data read In qla2x00_status_entry(), the FWI2 status path advances sense_data and shrinks par_sense_len by rsp_info_len: if (IS_FWI2_CAPABLE(ha)) { sense_data += rsp_info_len; par_sense_len -= rsp_info_len; } rsp_info_len is a 32-bit value taken directly from the target's FCP response (sf.rsp_data_len), while par_sense_len is the IOCB data area size (28 bytes for 24xx, 60 bytes for 29xx). A hostile or buggy target reporting an rsp_info_len larger than par_sense_len makes the unsigned subtraction underflow to a huge value and advances sense_data out of bounds. The underflowed par_sense_len then defeats the cap in qla2x00_handle_sense(): if (sense_len > par_sense_len) sense_len = par_sense_len; memcpy(cp->sense_buffer, sense_data, sense_len); so the memcpy reads up to SCSI_SENSE_BUFFERSIZE bytes from the out-of-bounds sense_data pointer, leaking adjacent response-ring/heap memory into the command's sense buffer. Clamp rsp_info_len to par_sense_len before the subtraction so par_sense_len can never underflow and sense_data stays within the IOCB data area.
Description
In the Linux kernel, the following vulnerability has been resolved: scsi: qla2xxx: Bound rsp_info_len to avoid OOB sense-data read In qla2x00_status_entry(), the FWI2 status path advances sense_data and shrinks par_sense_len by rsp_info_len: if (IS_FWI2_CAPABLE(ha)) { sense_data += rsp_info_len; par_sense_len -= rsp_info_len; } rsp_info_len is a 32-bit value taken directly from the target's FCP response (sf.rsp_data_len), while par_sense_len is the IOCB data area size (28 bytes for 24xx, 60 bytes for 29xx). A hostile or buggy target reporting an rsp_info_len larger than par_sense_len makes the unsigned subtraction underflow to a huge value and advances sense_data out of bounds. The underflowed par_sense_len then defeats the cap in qla2x00_handle_sense(): if (sense_len > par_sense_len) sense_len = par_sense_len; memcpy(cp->sense_buffer, sense_data, sense_len); so the memcpy reads up to SCSI_SENSE_BUFFERSIZE bytes from the out-of-bounds sense_data pointer, leaking adjacent response-ring/heap memory into the command's sense buffer. Clamp rsp_info_len to par_sense_len before the subtraction so par_sense_len can never underflow and sense_data stays within the IOCB data area. The fix sits before the comp_status switch, covering both qla2x00_handle_sense() call sites.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 5544213be7b4fb693730106a6d70a8cc1aa7cdf6, < 125b12861c726e58448bb95d55b04851fb131d1f; >= 5544213be7b4fb693730106a6d70a8cc1aa7cdf6, < e57ace988bda5693f7b3645f652ea4b4220870ee; >= 5544213be7b4fb693730106a6d70a8cc1aa7cdf6, < 6b08c0cb110a1fba92f99d655020198489699815; >= 5544213be7b4fb693730106a6d70a8cc1aa7cdf6, < be75ab791c9b3baca66c70ce03443afebc83acda; >= 5544213be7b4fb693730106a6d70a8cc1aa7cdf6, < ebc41dfc59d190956e0113e8bd90c28f6f21e8b9; >= 5544213be7b4fb693730106a6d70a8cc1aa7cdf6, < d7f7746ff031ae45724881261804f4bf5317c985; >= 5544213be7b4fb693730106a6d70a8cc1aa7cdf6, < f6e8977bce887481b2b2b0e2e14a791270741cfb; >= 5544213be7b4fb693730106a6d70a8cc1aa7cdf6, < ca6d880d6c70cb7946e7b3e05d7285f271b6d99e |
| Linux | Linux | 2.6.36 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-89846?
How severe is CVE-2026-89846?
How do I fix CVE-2026-89846?
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-89840In the Linux kernel, the following vulnerability has been re…7.1
- CVE-2026-89841In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-89842In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89843In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89844In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-89845In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89847In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-89848In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-89849In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-8985Autel Maxi Charger Single firmware through V1.03.51 is vulne…9.8
- CVE-2026-89850In the Linux kernel, the following vulnerability has been re…
- CVE-2026-89851In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-89846?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
