AUGUST 22, 2026
Live Feed
Back to database
Case File

CVE-2026-68411

UNKNOWN · CVSS N/A EPSS 0.18%

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

CyberRota Analysis

AI-Generated

The vulnerability affects the Linux kernel's mac80211_hwsim component, where improper handling of virtio RX length can lead to a host-triggerable denial of service by causing a guest panic. This occurs when a backend reports a length exceeding the available buffer size, leading to a buffer overflow during packet processing. System administrators and developers utilizing Linux kernel versions with this component should prioritize applying the patch to mitigate potential service disruptions.

CVE
CVE-2026-68411
Severity
UNKNOWN
CVSS
N/A
EPSS
0.18%
Linux

Original NVD Description

In the Linux kernel, the following vulnerability has been resolved: wifi: mac80211_hwsim: clamp virtio RX length before skb_put hwsim_virtio_rx_work() passes the virtqueue used-ring length reported by the device straight to skb_put() on a fixed-size receive skb. A backend reporting a length larger than the skb tailroom drives skb_put() past the buffer end and hits skb_over_panic() -- a host-triggerable guest panic (denial of service). Clamp the length to the skb's available room before skb_put(). A conforming device never reports more than the posted buffer size, so valid frames are unaffected; a truncated over-report then fails the length/header checks in hwsim_virtio_handle_cmd() and is dropped, so truncating rather than dropping here cannot be turned into a parsing problem.