HOMEVULNERABILITIESCVE-2026-53264
HIGH

CVE-2026-53264

Published: June 25, 2026· Updated: Jun 30, 2026

7.8
CVSS v3.1
EPSS:0.17%probability of exploitation in 30 daysPercentile:6.9th

Official Description

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

net/sched: act_api: use RCU with deferred freeing for action lifecycle

When NEWTFILTER and DELFILTER are run concurrently it is possible to create a

race with an associated action.

Let's illustrate with CPU0 running NEWTFILTER and CPU1 running DELFILTER:

0: mutex_lock() <-- holds the idr lock

0: rcu_read_lock()

0: p = idr_find(idr, index) <-- action p is valid (RCU protects IDR)

0: mutex_unlock() <-- releases the idr lock

1: refcount_dec_and_mutex_lock() <-- refcnt 1->0, mutex held

1: idr_remove(idr, index) <-- Action removed from IDR

1: mutex_unlock() <-- mutex released allowing us to delete the action

1: tcf_action_cleanup(p); kfree(p) <-- Kfrees p immediately, no deferral

0: refcount_inc_not_zero(&p->tcfa_refcnt) <-- ouch, UAF p points to freed memory

This patch fixes the race condition between NEWTFILTER and DELFILTER by

adding struct rcu_head to tc_action used in the deferral and introducing a

call_rcu() in the delete path to defer the final kfree().

Note: this is a revert of commit d7fb60b9cafb ("net_sched: get rid of tcfa_rcu")

but also modernization/simplification to directly use kfree_rcu().

Let's illustrate the new restored code path:

0: rcu_read_lock()

1: refcount_dec_and_mutex_lock() <-- refcnt 1->0, mutex held

1: idr_remove(idr, index)

1: mutex_unlock()

1: call_rcu(&p->tcfa_rcu, tcf_action_rcu_free) <-- defer kfree after grace period

0: p = idr_find(idr, index)

0: refcount_inc_not_zero(&p->tcfa_refcnt) <-- fails, refcnt already 0

1: rcu_read_unlock() <-- release so freeing can run after grace period

After CPU1 calls idr_remove(), the object is no longer reachable through the IDR.

CPU0's subsequent idr_find() will return NULL, and even if it still held a

stale pointer, the immediate kfree() is now deferred until after the RCU grace

period, so no UAF can occur.

NVD Source

Technical Analysis

CVE-2026-53264 requires local access, meaning attackers must already have a foothold on the target system.

Exploitation requires low privileges, which limits the exposure to scenarios where an attacker has already gained initial access.

A successful exploit results in complete confidentiality breach (data exposure), full integrity compromise (data manipulation), availability disruption (denial of service), with a CVSS base score of 7.8.

CVSS v3.1 Vector Breakdown

Exploitability
Attack VectorLocal
Attack ComplexityLow
Privileges Req.Low
User InteractionNone
ScopeUnchanged
Impact
ConfidentialityHigh
IntegrityHigh
AvailabilityHigh
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Affected Vendors & Products

Mentioned vendors (from description):
Linux
CPE data not yet available in NVD for this CVE.

Exploit & PoC Resources

NO KNOWN EXPLOITNo public exploit confirmed at this time
External links open in a new tab. Always verify in a controlled environment before use.

All References (8)

Quick Facts

CVE IDCVE-2026-53264
CVSS Score7.8 / 10
SeverityHIGH
CISA KEVNo
EPSS (30d)0.17%
PublishedJun 25, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-53264 in threat intel feeds
  • Review IDS/IPS signatures for exploitation attempts
Data sourced from NVD (NIST), CISA KEV, and EPSS (FIRST). Analysis generated by CTIWATCH.COM. CVE data is provided under the NVD usage policy.