CVE-2026-74557
Last modified
CVE-2026-74557 is a high-severity vulnerability rated 7.5/10 on the CVSS scale. In the Linux kernel, the following vulnerability has been resolved: scsi: libiscsi: Fix stale-data leak into the SCSI sense buffer iscsi_scsi_cmd_rsp() copies the sense data of a SCSI Response from the target-supplied data segment. The segment carries a 2-byte sense length followed by the sense bytes, so it must hold 2 + senselen bytes, but the bounds check only requires datalen >= senselen: senselen = get_unaligned_be16(data); if (datalen < senselen) goto invalid_datalen; memcpy(sc->sense_buffer, data + 2, min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE)); A target that returns a SCSI Response whose datalen equals senselen (with senselen <= SCSI_SENSE_BUFFERSIZE) makes the memcpy() from data + 2 read up to two bytes past the received data. EPSS estimates a 0.29% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: scsi: libiscsi: Fix stale-data leak into the SCSI sense buffer iscsi_scsi_cmd_rsp() copies the sense data of a SCSI Response from the target-supplied data segment. The segment carries a 2-byte sense length followed by the sense bytes, so it must hold 2 + senselen bytes, but the bounds check only requires datalen >= senselen: senselen = get_unaligned_be16(data); if (datalen < senselen) goto invalid_datalen; memcpy(sc->sense_buffer, data + 2, min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE)); A target that returns a SCSI Response whose datalen equals senselen (with senselen <= SCSI_SENSE_BUFFERSIZE) makes the memcpy() from data + 2 read up to two bytes past the received data. Those bytes are stale conn->data contents and end up in the command's sense buffer, which is returned to userspace. Account for the 2-byte sense length prefix in the check.
Metrics
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 7996a778ff8c717cb1a7a294475c59cc8f1e9fb8, < 812f1ae95b22419422972748f173b0916ee4d621; >= 7996a778ff8c717cb1a7a294475c59cc8f1e9fb8, < fef6167e8149896cd81bea333fd51b1c91239149; >= 7996a778ff8c717cb1a7a294475c59cc8f1e9fb8, < baa04572673125e4d5bc309b4077d1cb46cc78d1; >= 7996a778ff8c717cb1a7a294475c59cc8f1e9fb8, < 7567f06abdefb1caf2d836107c4d08c5185c650e; >= 7996a778ff8c717cb1a7a294475c59cc8f1e9fb8, < 60499924faf4ef97e84228c20515218ef121facf; >= 7996a778ff8c717cb1a7a294475c59cc8f1e9fb8, < 3ef209ca0b4b68c75e9a814d90cc916026b5a6ac; >= 7996a778ff8c717cb1a7a294475c59cc8f1e9fb8, < 1f07a897d43c63e6c9458bf77450defef39b5833; >= 7996a778ff8c717cb1a7a294475c59cc8f1e9fb8, < 98b87885de4b7f605533a2860685f5689fce8e82 |
| Linux | Linux | 2.6.18 |
References
Timeline
- Published
- Last Modified
- Status
- Received
Frequently Asked Questions
What is CVE-2026-74557?
How severe is CVE-2026-74557?
How do I fix CVE-2026-74557?
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-74551In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-74552In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74553In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74554In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74555In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74556In the Linux kernel, the following vulnerability has been re…9.8
- CVE-2026-74558In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74559In the Linux kernel, the following vulnerability has been re…
- CVE-2026-7456The Udimi Tools plugin for WordPress is vulnerable to unauth…6.5
- CVE-2026-74560In the Linux kernel, the following vulnerability has been re…
- CVE-2026-74561In the Linux kernel, the following vulnerability has been re…8.8
- CVE-2026-74562In the Linux kernel, the following vulnerability has been re…8.8
Are you affected by CVE-2026-74557?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
