SEPTEMBER 19, 2026
Live Feed
Back to database
Case File

CVE-2026-74626

HIGH · CVSS 7.5 EPSS 0.50%

Source: NVD + CISA KEV + EPSS · Published 2026-08-22 · Last synced 2026-09-18

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's ntb_netdev component, where a failure in memory allocation during packet reception can lead to a depletion of the RX queue, ultimately stalling network reception. This issue arises because the current implementation does not handle allocation failures properly, resulting in lost packets without any retry mechanism to replenish the queue. Organizations utilizing Linux systems, particularly those relying on network-intensive applications, should prioritize addressing this vulnerability to ensure uninterrupted network performance.

CVE
CVE-2026-74626
Severity
HIGH
CVSS
7.5
EPSS
0.50%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: NTB: ntb_netdev: Preserve RX queue depth on allocation failure ntb_netdev_rx_handler() hands the received skb to the network stack before allocating its replacement. If the allocation fails, nothing is reposted. Every failure therefore takes one buffer out of the RX queue while the interface remains up, and enough failures eventually stall reception. A retry path could refill the queue later, but ntb_netdev has none. Allocate the replacement first instead. If that fails, drop the packet and repost the same skb. This keeps the queue full and lets packet delivery resume as soon as memory is available again.