AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-74394

UNKNOWN · CVSS N/A

Source: NVD + CISA KEV + EPSS · Published 2026-08-15 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's RDMA/srpt component, where an integer overflow in the immediate data length check can be exploited by a malicious initiator. By sending a crafted value, an attacker can bypass bounds checks and potentially cause memory allocation issues, leading to denial of service or other unintended behavior. Organizations using Linux systems with RDMA capabilities should prioritize addressing this vulnerability to mitigate risks associated with malicious network traffic.

CVE
CVE-2026-74394
Severity
UNKNOWN
CVSS
N/A
EPSS
N/A
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: RDMA/srpt: fix integer overflow in immediate data length check imm_buf->len is a user-controlled uint32_t received from the network. Adding it to imm_data_offset without overflow checking allows a malicious initiator to send len=0xFFFFFFFF, causing req_size to wrap around to a small value, bypassing the bounds check, and subsequently passing a ~4GB length to sg_init_one(). Use check_add_overflow() to detect wrapping before the comparison.