CVE Catalog

CVE-2026-68411

Low risk· EPSS 7%
Published: Updated: Translated: NVD NIST

Exploitation Probability (EPSS)

Low risk
0.17%

7th percentile - higher than 7% of all known CVEs

Summary

In the Linux kernel, the wifi mac80211_hwsim driver has a denial-of-service vulnerability due to lack of clamping the virtio RX length before skb_put(). A malicious backend can report a length larger than the available buffer, causing a kernel panic (skb_over_panic). The fix clamps the length to the available room.

Risk Assessment

An attacker with access to the virtio backend can trigger a kernel panic, leading to denial of service (DoS) for the entire system.

Recommendation

Immediately update the Linux kernel to a version containing the fix that clamps the data length in hwsim_virtio_rx_work().

Other vulnerabilities in Linux kernel

See all
Original NVD description (English source)

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.

Vulnerability data from NVD (NIST) · CISA KEV · EPSS