CVE detail
CVE-2026-53176
In the Linux kernel, the following vulnerability has been resolved: IB/isert: Reject login PDUs shorter than ISER_HEADERS_LEN In drivers/infiniband/ulp/isert/ib_isert.c, isert_login_recv_done() computes the login request payload length as wc->byte_len minus ISER_HEADERS_LEN with no lower bound, and login_req_len is a signed int. A remote iSER initiator can post a login Send work request carrying fewer than ISER_HEADERS_LEN (76) bytes, so the subtraction underflows and login_req_len becomes negative. isert_rx_login_req() then reads that negative length back into a signed int, takes size = min(rx_buflen, MAX_KEY_VALUE_PAIRS), and because the min() is signed it keeps the negative value; the value is then passed as the memcpy() length and sign-extended to a multi-gigabyte size_t. The copy into the 8192-byte login->req_buf runs far out of bounds and faults, crashing the target node. The login phase precedes iSCSI authentication, so no credentials are required to reach this path. Reject any login PDU shorter than ISER_HEADERS_LEN before the subtraction, mirroring the existing early return on a failed work completion, so login_req_len can never go negative. The upper bound was already safe: a posted login buffer cannot deliver more than ISER_RX_PAYLOAD_SIZE, so the difference stays at or below MAX_KEY_VALUE_PAIRS and the existing min() clamps it; only the missing lower bound needs to be added.
Buzz score
Why this CVE is surfacing
This all-time snapshot uses the same composite formula as Trending across a 30-year evidence window, rather than a current rolling window.
Buzz score components · mention 25.6 · diversity 20.0 · KEV 0.0 · OTX 0.0 · PoC 0.0
Why it matters now
Mention timeline
- Total mentions
- 0
- within the 30d window
- Peak daily
- 0
- highest bucket
Evidence
Source links by recency
12 source links · newest first
Information published.
vendormsrc.microsoft.comJun 28, 2026, 8:51 AM- https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-53176.jsonsecurity.access.redhat.com
No excerpt available.
Vendor Advisorysecurity.access.redhat.comJun 25, 2026, 9:16 AM - https://bugzilla.redhat.com/show_bug.cgi?id=2492741bugzilla.redhat.com
No excerpt available.
Exploitbugzilla.redhat.comJun 25, 2026, 9:16 AM - https://access.redhat.com/security/cve/CVE-2026-53176access.redhat.com
No excerpt available.
Vendor Advisoryaccess.redhat.comJun 25, 2026, 9:16 AM No excerpt available.
Patchgit.kernel.orgJun 25, 2026, 9:16 AMNo excerpt available.
Patchgit.kernel.orgJun 25, 2026, 9:16 AMNo excerpt available.
Patchgit.kernel.orgJun 25, 2026, 9:16 AMNo excerpt available.
Patchgit.kernel.orgJun 25, 2026, 9:16 AMNo excerpt available.
Patchgit.kernel.orgJun 25, 2026, 9:16 AMNo excerpt available.
Patchgit.kernel.orgJun 25, 2026, 9:16 AMNo excerpt available.
Patchgit.kernel.orgJun 25, 2026, 9:16 AMNo excerpt available.
Patchgit.kernel.orgJun 25, 2026, 9:16 AM
Exploit code
Public exploit repository references
Public PoC repositories are third-party, potentially unsafe artifacts. Treat their code as untrusted and use it only on authorized systems in an isolated, least-privilege environment. cvebuzz does not execute the code or verify that an exploit works.
0 repository references · best confidence N/A · max 0 stars
Related records
Similar CVEs
6 related CVEs with shared weakness or product evidence
- CVE-2026-48298CVSS 6.2 · Medium
CAI Content Credentials is affected by an Integer Underflow (Wrap or Wraparound) vulnerability that could result in an application denial-of-service. An attacker could exploit thi…
- CVE-2026-48296CVSS 6.2 · Medium
CAI Content Credentials is affected by an Integer Underflow (Wrap or Wraparound) vulnerability that could result in an application denial-of-service. An attacker could exploit thi…
- CVE-2026-53178CVSS 8.1 · High
In the Linux kernel, the following vulnerability has been resolved: staging: rtl8723bs: rtw_mlme: add bounds checks before ie_length subtraction Add guards to ensure ie_length i…
- CVE-2026-53150CVSS 5.5 · Medium
In the Linux kernel, the following vulnerability has been resolved: thunderbolt: Reject zero-length property entries in validator tb_property_entry_valid() accepts entries with…
- CVE-2026-53130CVSS 7.8 · High
In the Linux kernel, the following vulnerability has been resolved: fs/omfs: reject s_sys_blocksize smaller than OMFS_DIR_START omfs_fill_super() rejects oversized s_sys_blocksi…
- CVE-2026-52919CVSS 7.8 · High
In the Linux kernel, the following vulnerability has been resolved: batman-adv: fix tp_meter counter underflow during shutdown batadv_tp_sender_shutdown() unconditionally decrem…