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 — Patch released 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
11%
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(7)

Vendor / EcosystemFixed in / PatchReleasedSource
redhatkernel-rt-0:5.14.0-284.187.1.rt14.472.el9_22026-08-17redhat
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-0:5.14.0-687.39.1.el9_82026-08-13redhat
redhatkernel-0:5.14.0-427.144.1.el9_42026-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 (142 versions)7.0.13-1

Weakness Classification(1)

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

Additional Vendor Advisories

(1)

Vendors that published advisories for this CVE beyond the curated set above. Broader coverage but minimal per-row detail — click through for the original advisory.

Data Freshness Timeline

(refreshed 37× in last 7d / 163× 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 273 total refreshes for this CVE.

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

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 89.1% 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.