CVE-2026-53264

HIGHPre-NVD 7.87.8
EchelonGraph scoreHIGH confidence

Score 7.8 from GitHub Security Advisory (severity: HIGH) published 2026-06-25. a secondary CVSS source baseline 7.8; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — 4 sources updated this week
7.8
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS: 0%CVSS: 7.8Exploit: NoneExposed: 0

No vendor fix yet — apply a workaround or compensating control (WAF / firewall / segmentation) and watch for a patch.

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.

CVSS v3
7.8
EG Score
7.8(high)
EPSS
2.9%
KEV
Not listed

Published

June 25, 2026

Last Modified

June 30, 2026

Advisory Details (8)

Auto-updated Jun 28, 2026
No patch confirmed yet.
generic

net/sched: act_api: use RCU with deferred freeing for action lifecycle - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/b60e9391142e983fab2be53497aa8f71fdd09cd5
generic

net/sched: act_api: use RCU with deferred freeing for action lifecycle - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/98b2e40879abf0245be5a5b7af69e0f6ff524ac3
generic

net/sched: act_api: use RCU with deferred freeing for action lifecycle - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/91d105d2cbe002f9c7b43a6183adedc37e1da1f7
generic

net/sched: act_api: use RCU with deferred freeing for action lifecycle - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/8b136f18ac4b2ace5aaad3305b3f8a5d8165a009
generic

net/sched: act_api: use RCU with deferred freeing for action lifecycle - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/5dd51e09020c65aa53cf128e5e3517cd53b3c113
generic

net/sched: act_api: use RCU with deferred freeing for action lifecycle - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/5057e1aca011e51ef51498c940ef96f3d3e8a305
generic

net/sched: act_api: use RCU with deferred freeing for action lifecycle - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/1f1b98fea6b9ea30507d0f2fbff6750292d097e2
generic

net/sched: act_api: use RCU with deferred freeing for action lifecycle - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/18af5d2ef0c4f65787fd1280c8b23286b9f2a835

Vendor Advisories for CVE-2026-53264(2)

These vendors published their own advisory mentioning this CVE — often with vendor-specific remediation steps + affected product lists not in NVD.

Data Freshness Timeline

(refreshed 49× in last 7d / 62× in last 30d)

Each row is a source pipeline that fetched or updated this CVE on that date, with what changed. For example, "NVD update" means NVD published or revised its analysis for this CVE; "MITRE cvelistV5" means we ingested or refreshed it from the CNA feed. Most recent first.

  1. 2026-07-07 04:20 UTCEG score recompute
  2. 2026-07-07 04:20 UTCVendor advisory
  3. 2026-07-07 04:20 UTCGHSA enrichment
  4. 2026-07-06 17:19 UTCEG score recompute
  5. 2026-07-06 17:19 UTCVendor advisory
  6. 2026-07-06 17:19 UTCGHSA enrichment
  7. 2026-07-06 16:27 UTCEPSS rescore
  8. 2026-07-06 16:27 UTCEPSS rescore
  9. 2026-07-06 06:19 UTCEG score recompute
  10. 2026-07-06 06:19 UTCVendor advisory
  11. 2026-07-06 06:19 UTCGHSA enrichment
  12. 2026-07-06 02:23 UTCEPSS rescore
  13. 2026-07-06 02:23 UTCEPSS rescore
  14. 2026-07-05 19:22 UTCEG score recompute
  15. 2026-07-05 19:22 UTCVendor advisory
  16. 2026-07-05 19:22 UTCGHSA enrichment
  17. 2026-07-05 08:24 UTCEG score recompute
  18. 2026-07-05 08:24 UTCVendor advisory
  19. 2026-07-05 08:24 UTCGHSA enrichment
  20. 2026-07-04 21:27 UTCEG score recompute
  21. 2026-07-04 21:27 UTCVendor advisory
  22. 2026-07-04 21:27 UTCGHSA enrichment
  23. 2026-07-04 10:31 UTCEG score recompute
  24. 2026-07-04 10:31 UTCVendor advisory
  25. 2026-07-04 10:31 UTCGHSA enrichment
Show 37 more
  1. 2026-07-04 06:31 UTCEPSS rescore
  2. 2026-07-04 06:31 UTCEPSS rescore
  3. 2026-07-03 23:34 UTCEG score recompute
  4. 2026-07-03 23:34 UTCVendor advisory
  5. 2026-07-03 23:34 UTCGHSA enrichment
  6. 2026-07-03 12:37 UTCEG score recompute
  7. 2026-07-03 12:37 UTCVendor advisory
  8. 2026-07-03 12:36 UTCGHSA enrichment
  9. 2026-07-03 01:18 UTCEG score recompute
  10. 2026-07-03 01:18 UTCVendor advisory
  11. 2026-07-03 01:18 UTCGHSA enrichment
  12. 2026-07-02 14:21 UTCEG score recompute
  13. 2026-07-02 14:21 UTCVendor advisory
  14. 2026-07-02 14:21 UTCGHSA enrichment
  15. 2026-07-02 03:25 UTCEG score recompute
  16. 2026-07-02 03:25 UTCVendor advisory
  17. 2026-07-02 03:25 UTCGHSA enrichment
  18. 2026-07-01 16:28 UTCEG score recompute
  19. 2026-07-01 16:28 UTCVendor advisory
  20. 2026-07-01 16:28 UTCGHSA enrichment
  21. 2026-07-01 15:07 UTCEPSS rescore
  22. 2026-07-01 05:31 UTCEG score recompute 7.80
  23. 2026-07-01 05:31 UTCVendor advisory
  24. 2026-07-01 05:31 UTCGHSA enrichment
  25. 2026-06-29 14:06 UTCEPSS rescore
  26. 2026-06-29 14:06 UTCEPSS rescore
  27. 2026-06-28 14:07 UTCEPSS rescore
  28. 2026-06-28 07:52 UTCMITRE cvelistV5CVSS v3 → 7.8 · severity → HIGH
  29. 2026-06-28 07:46 UTCEG score recompute
  30. 2026-06-28 07:46 UTCVendor advisory
  31. 2026-06-28 07:46 UTCGHSA enrichment
  32. 2026-06-28 04:56 UTCEPSS rescore
  33. 2026-06-28 04:56 UTCEPSS rescore
  34. 2026-06-27 03:08 UTCEPSS rescore
  35. 2026-06-25 13:49 UTCEPSS rescore
  36. 2026-06-25 10:03 UTCEG score recompute
  37. 2026-06-25 10:03 UTCGHSA enrichment

Frequently asked(5)

What is CVE-2026-53264?
CVE-2026-53264 is a high vulnerability published on June 25, 2026. 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…
When was CVE-2026-53264 disclosed?
CVE-2026-53264 was first published in the National Vulnerability Database on June 25, 2026, with the most recent update on June 30, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-53264 actively exploited?
CVE-2026-53264 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 2.9% percentile likelihood of exploitation in the next 30 days — higher percentiles indicate greater predicted risk.
What is the CVSS score of CVE-2026-53264?
CVE-2026-53264 has a CVSS v3 base score of 7.8 (NVD).
How do I remediate CVE-2026-53264?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-53264, EchelonGraph cross-links them in the Vendor Advisories panel below — those typically contain the canonical remediation steps, fixed version numbers, and any vendor-specific mitigations.

Dependency Blast Radius

Explore the affected products and dependency analysis for CVE-2026-53264

Explore →

Is Your Infrastructure Affected by CVE-2026-53264?

EchelonGraph automatically scans your cloud infrastructure and maps CVE exposure using blast radius analysis.