CVE-2026-53264

HIGHPre-NVD 7.87.8
EchelonGraph scoreMEDIUM confidence

Score 7.8 from GitHub Security Advisory (severity: HIGH) published 2026-06-25. the CNA's CVSS baseline 7.8; sources differ by 0.0.

Triggered by: GitHub Security Advisory CVSS
Sources: cna:linux, epss, ghsa
Trending — 4 sources updated this weekElevated
7.8EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 0%CVSS: 7.8Exploit: Elevated riskExposed: 0

A fix is available — apply it.

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(medium)
EG Risk
51(Track*)
EG Risk 51/100SSVC: Track*

EG Risk is EchelonGraph's 0–100 priority score: it fuses intrinsic severity with real-world exploitation and automatability so you can rank equal-severity CVEs and fix the most dangerous first. Higher = act sooner. Distinct from the 0–10 EG Score (severity).

How it’s computed
Severity78% × 45%
Exploitation40% × 40%
Automatability0% × 15%
Action: Watch closely — could escalate to Attend.
EPSS PROB
0%
EPSS %ILE
16%
KEV
Not listed

Published

June 25, 2026

Last Modified

August 5, 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

Patch Availability(12)

Vendor / EcosystemFixed in / PatchReleasedSource
ubuntulinux-tools-oem-7.0 (7.0.0-1013.13) @ resolute2026-09-18ubuntu
ubuntulinux-virtual-hwe-26.04-edge (7.0.0-31.31) @ resolute2026-09-18ubuntu
ubuntulinux-tools-nvidia-hwe-24.04-edge (7.0.0-1018.18~24.04.1) @ noble2026-09-18ubuntu
ubuntulinux-tools-gcp-edge (7.0.0-1011.11~24.04.1) @ noble2026-09-18ubuntu
redhatkpatch-patch2026-09-02redhat
redhatkernel-0:6.12.0-55.98.1.el10_02026-08-17redhat
redhatkernel-0:5.14.0-284.187.1.el9_22026-08-17redhat
redhatkernel-rt-0:5.14.0-284.187.1.rt14.472.el9_22026-08-17redhat
redhatkernel-0:5.14.0-427.144.1.el9_42026-08-13redhat
redhatkernel-0:5.14.0-687.39.1.el9_82026-08-13redhat
redhatkernel-0:5.14.0-570.134.1.el9_62026-08-12redhat
redhatkernel-0:6.12.0-211.47.1.el10_22026-08-12redhat

Patches are aggregated from vendor advisories (Red Hat, Microsoft, Cisco, GitHub) and package ecosystems (OSV, GHSA). Multiple rows for the same upstream release have been deduplicated.

Affected Packages

(5 across 4 ecosystems)
Debian:11(2)
PackageVulnerable rangeFixed inDependents
linux5.10.103-1 ... 5.10.92-2 (54 versions)5.10.259-1
linux-6.16.1.106-3~deb11u1 ... 6.1.174-1~deb11u1 (20 versions)6.1.176-1~deb11u1
Debian:12(1)
PackageVulnerable rangeFixed inDependents
linux6.1.106-1 ... 6.1.99-1 (53 versions)6.1.176-1
Debian:13(1)
PackageVulnerable rangeFixed inDependents
linux6.12.38-1 ... 6.12.94-1~bpo12+1 (27 versions)6.12.94-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.0.9-1~bpo13+1 (145 versions)7.0.13-1

Weakness Classification(1)

MITRE Common Weakness Enumeration — the root-cause categories this CVE belongs to.

Additional Vendor Advisories

(5)

Data Freshness Timeline

(refreshed 15× 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.

Showing the most recent 100 of 329 total refreshes for this CVE.

  1. 2026-09-18 19:28 UTCEPSS rescore
  2. 2026-09-18 07:28 UTCEG score recompute
  3. 2026-09-18 07:28 UTCVendor advisory
  4. 2026-09-18 07:28 UTCGHSA enrichment
  5. 2026-09-16 14:08 UTCEPSS rescore
  6. 2026-09-16 05:15 UTCEPSS rescore
  7. 2026-09-14 01:22 UTCEG score recompute
  8. 2026-09-14 01:22 UTCVendor advisory
  9. 2026-09-14 01:22 UTCGHSA enrichment
  10. 2026-09-13 16:47 UTCEPSS rescore
  11. 2026-09-13 09:40 UTCVendor advisory
  12. 2026-09-13 09:40 UTCGHSA enrichment
  13. 2026-09-12 15:52 UTCEG score recompute
  14. 2026-09-12 15:52 UTCVendor advisory
  15. 2026-09-12 15:52 UTCGHSA enrichment
  16. 2026-09-11 14:53 UTCEPSS rescore
  17. 2026-09-10 09:35 UTCEPSS rescore
  18. 2026-09-08 22:01 UTCEPSS rescore
  19. 2026-09-07 16:01 UTCEPSS rescore
  20. 2026-09-06 13:47 UTCEPSS rescore
  21. 2026-09-04 05:06 UTCEPSS rescore
  22. 2026-09-02 14:12 UTCEPSS rescore
  23. 2026-09-01 13:54 UTCEPSS rescore
  24. 2026-09-01 04:40 UTCEPSS rescore
  25. 2026-08-30 19:36 UTCEG score recompute
Show 75 more
  1. 2026-08-30 19:36 UTCVendor advisory
  2. 2026-08-30 19:36 UTCGHSA enrichment
  3. 2026-08-30 19:17 UTCEPSS rescore
  4. 2026-08-30 01:22 UTCEPSS rescore
  5. 2026-08-28 21:41 UTCEPSS rescore
  6. 2026-08-27 23:56 UTCEG score recompute
  7. 2026-08-27 23:56 UTCVendor advisory
  8. 2026-08-27 23:56 UTCGHSA enrichment
  9. 2026-08-27 14:25 UTCEPSS rescore
  10. 2026-08-26 14:46 UTCEPSS rescore
  11. 2026-08-25 13:49 UTCEPSS rescore
  12. 2026-08-25 00:08 UTCEG score recompute
  13. 2026-08-25 00:08 UTCVendor advisory
  14. 2026-08-25 00:08 UTCGHSA enrichment
  15. 2026-08-24 13:11 UTCEG score recompute
  16. 2026-08-24 13:11 UTCVendor advisory
  17. 2026-08-24 13:11 UTCGHSA enrichment
  18. 2026-08-23 20:21 UTCVendor advisory
  19. 2026-08-23 20:21 UTCGHSA enrichment
  20. 2026-08-23 09:24 UTCEG score recompute
  21. 2026-08-23 09:24 UTCVendor advisory
  22. 2026-08-23 09:24 UTCGHSA enrichment
  23. 2026-08-23 00:19 UTCEPSS rescore
  24. 2026-08-22 22:27 UTCVendor advisory
  25. 2026-08-22 22:27 UTCGHSA enrichment
  26. 2026-08-22 10:39 UTCEG score recompute
  27. 2026-08-22 10:39 UTCVendor advisory
  28. 2026-08-22 10:39 UTCGHSA enrichment
  29. 2026-08-21 23:49 UTCEPSS rescore
  30. 2026-08-21 17:26 UTCVendor advisory
  31. 2026-08-21 17:26 UTCGHSA enrichment
  32. 2026-08-21 05:09 UTCEG score recompute
  33. 2026-08-21 05:09 UTCVendor advisory
  34. 2026-08-21 05:09 UTCGHSA enrichment
  35. 2026-08-20 22:55 UTCEPSS rescore
  36. 2026-08-20 18:02 UTCVendor advisory
  37. 2026-08-20 18:02 UTCGHSA enrichment
  38. 2026-08-20 07:05 UTCEG score recompute
  39. 2026-08-20 07:05 UTCVendor advisory
  40. 2026-08-20 07:05 UTCGHSA enrichment
  41. 2026-08-19 17:04 UTCEPSS rescore
  42. 2026-08-19 12:40 UTCVendor advisory
  43. 2026-08-19 12:40 UTCGHSA enrichment
  44. 2026-08-19 01:30 UTCEG score recompute
  45. 2026-08-19 01:30 UTCVendor advisory
  46. 2026-08-19 01:30 UTCGHSA enrichment
  47. 2026-08-18 13:48 UTCEPSS rescore
  48. 2026-08-17 13:47 UTCEPSS rescore
  49. 2026-08-17 11:09 UTCVendor advisory
  50. 2026-08-17 11:09 UTCGHSA enrichment
  51. 2026-08-17 00:13 UTCEG score recompute
  52. 2026-08-17 00:13 UTCVendor advisory
  53. 2026-08-17 00:13 UTCGHSA enrichment
  54. 2026-08-16 14:56 UTCEPSS rescore
  55. 2026-08-16 13:16 UTCVendor advisory
  56. 2026-08-16 13:16 UTCGHSA enrichment
  57. 2026-08-16 02:19 UTCEG score recompute
  58. 2026-08-16 02:19 UTCVendor advisory
  59. 2026-08-16 02:19 UTCGHSA enrichment
  60. 2026-08-16 02:14 UTCEPSS rescore
  61. 2026-08-15 15:23 UTCVendor advisory
  62. 2026-08-15 15:23 UTCGHSA enrichment
  63. 2026-08-15 04:26 UTCEG score recompute
  64. 2026-08-15 04:26 UTCVendor advisory
  65. 2026-08-15 04:26 UTCGHSA enrichment
  66. 2026-08-15 01:30 UTCEPSS rescore
  67. 2026-08-14 17:28 UTCVendor advisory
  68. 2026-08-14 17:28 UTCGHSA enrichment
  69. 2026-08-14 06:13 UTCEG score recompute
  70. 2026-08-14 06:13 UTCVendor advisory
  71. 2026-08-14 06:13 UTCGHSA enrichment
  72. 2026-08-13 22:00 UTCEPSS rescore
  73. 2026-08-13 19:16 UTCVendor advisory
  74. 2026-08-13 19:16 UTCGHSA enrichment
  75. 2026-08-13 08:20 UTCVendor advisory

Publicly available exploits

(1 reference)

Working exploit code is in the public domain (1 GitHub PoC). Defenders should treat patch urgency accordingly — public PoCs typically lead to mass-exploitation within 24-72 hours.

  • GitHub PoCHORKimhab/CVE-2026-53264
    First seen Jul 28, 2026

    CVE-2026-53264 - Draft

    Open source ↗

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 August 5, 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 0% probability of exploitation in the next 30 days, which ranks it in the top 84.3% of all scored CVEs.
What is the CVSS score of CVE-2026-53264?
CVE-2026-53264 has a CVSS v4.0 base score of 7.8 (CNA self-assessment; NVD's own analysis pending).
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

See which npm, PyPI, Go, and Maven packages are affected by 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.