CVE-2026-72493

In the Linux kernel, the following vulnerability has been resolved: net: serialize netif_running() check in enqueue_to_backlog() Syzbot reported a KASAN slab-use-after-free in fib_rules_lookup(). The root cause is a race condition where packets can escape the backlog flushing during device unregistration (e.g., during netns exit). Commit e9e4dd3267d0 ("net: do not process device backlog during unregistration") introduced a lockless netif_running() check in enqueue_to_backlog() to prevent queuing packets to an unregistering device. However, this creates a TOCTOU race window. A lockless transmitter (like veth_xmit) can pass the check before dev_close() clears IFF_UP. If the transmitter is then delayed, flush_all_backlogs() can run and finish before the transmitter grabs the backlog lock and queues the packet. The packet then escapes the flush and triggers UAF later when processed. Fix this by moving the netif_running() check inside the backlog lock. This serializes the check with the flush work (which also grabs the lock). We then either queue the packet before the flush runs (so it gets flushed), or check netif_running() after the flush/close completes (so it gets dropped).

Package Linux Kernel
Published 2026-08-15
Last modified 2026-08-15
Patch available
Yes

Affected versions

Linux kernel versions 3.2.71, 3.4.111, 3.12.48, 3.14.54, 3.18.22, 4.1.9, 4.2 and later are affected. Fixed in 7.1.5, 7.2-rc1 and their respective stable series.

Affected from
≥ 3.2.71 ≥ 3.4.111 ≥ 3.12.48 ≥ 3.14.54 ≥ 3.18.22 ≥ 4.1.9 ≥ 4.2
Fixed in
✓ 7.1.5 7.1.x ✓ 7.2-rc1

Frequently asked questions

  • What is CVE-2026-72493?

    CVE-2026-72493 is a unscored severity Linux kernel vulnerability . It affects Linux kernel versions from 3.2.71 onward and has been patched in 7.1.5 and 7.2-rc1. CVE-2026-72493 has not been confirmed as actively exploited and is not listed in the CISA KEV catalog.

  • Is there a patch available for CVE-2026-72493?

    Yes. CVE-2026-72493 has been patched. Fixed versions include 7.1.5 and 7.2-rc1. If you are running Linux kernel 3.2.71 or later up to the fix versions, apply the relevant patch for your kernel branch.

  • Is CVE-2026-72493 actively exploited?

    No. CVE-2026-72493 has not been confirmed as actively exploited. It is not listed in the CISA Known Exploited Vulnerabilities (KEV) catalog.