Get a Demo

Let's Patch It!

Book a short call with one our specialists, we'll walk you through how Endor Patches work, and ask you a few questions about your environment (like your primary programming languages and repository management). We'll also send you an email right after you fill out the form, feel free to reply with any questions you have in advance!

CVE

CVE-2026-72493

net: serialize netif_running() check in enqueue_to_backlog()
Back to all
CVE

CVE-2026-72493

net: serialize netif_running() check in enqueue_to_backlog()

In the Linux kernel, the following vulnerability has been resolved:

net: serialize netifrunning() check in enqueueto_backlog()

Syzbot reported a KASAN slab-use-after-free in fibruleslookup().

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 netifrunning() check in enqueueto_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 devclose() clears IFFUP. If the transmitter is then

delayed, flushallbacklogs() 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 Versions Affected

Package Version
patch Availability
No items found.

Automatically patch vulnerabilities without upgrading

Fix Without Upgrading
Detect compatible fix
Apply safe remediation
Fix with a single pull request

CVSS Version

Severity
Base Score
CVSS Version
Score Vector
C
H
U
9.9
-
3.1
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
C
H
U
0
-
3.1
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H
C
H
U
-

Related Resources

No items found.

References

https://git.kernel.org/stable/c/2fface6e0bbd6314d1d9d071abf2c4d67548511c, https://git.kernel.org/stable/c/46762cefe7f4e5bffc1eb467810a7bbb02e461d7, https://github.com/CVEProject/cvelistV5/tree/main/cves/2026/72xxx/CVE-2026-72493.json, https://nvd.nist.gov/vuln/detail/CVE-2026-72493, https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git

Severity

9.9

CVSS Score
0
10

Basic Information

Base CVSS
9.9
EPSS Probability
0.00348%
EPSS Percentile
0.27543%
Introduced Version
e9e4dd3267d0c5234c5c0f47440456b10875dec9,0,3.2.71,3.4.111,3.12.48,3.14.54,3.18.22,4.1.9,4.2.0
Fix Available
46762cefe7f4e5bffc1eb467810a7bbb02e461d7,3.3,3.5,3.13,3.15,3.19,4.2,7.1.5

Fix Critical Vulnerabilities Instantly

Secure your app without upgrading.
Fix Without Upgrading