CVE-2026-74621

HIGHPre-NVD 7.57.5
EchelonGraph scoreHIGH confidence

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

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — 5 sources updated this week
7.5EG
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.5Exploit: None knownExposed: 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_ct: fix sk_buff leak when the header checks reject a packet

tcf_ct_handle_fragments() runs its header sanity checks before handing anything to the defragmentation engine:

if (family == NFPROTO_IPV4) err = tcf_ct_ipv4_is_fragment(skb, &frag); else err = tcf_ct_ipv6_is_fragment(skb, &frag); if (err || !frag) return err;

tcf_ct_ipv4_is_fragment() returns -EINVAL or -ENOMEM; tcf_ct_ipv6_is_fragment() adds -EPROTO when ipv6_find_hdr() fails. None of them frees or queues the skb, so on that path the caller still owns it.

tcf_ct_act() however funnels every non-zero return into the ownership-transfer exit:

err = tcf_ct_handle_fragments(net, skb, family, p->zone, &defrag); if (err) goto out_frag; ... out_frag: if (err != -EINPROGRESS) tcf_action_inc_drop_qstats(&c->common); return TC_ACT_CONSUMED;

TC_ACT_CONSUMED means the action took ownership of the skb, so no caller frees it - sch_handle_ingress(), sch_handle_egress() and tcf_qevent_handle() all deliberately skip the free for that verdict. The skb is therefore orphaned: one sk_buff plus its data buffer is leaked per malformed packet, unbounded. Note the drop counter is already incremented for these errors, so the statistics claim a drop that never happens.

Three different ownership states reach out_frag: today - the skb may be queued by the defrag engine (-EINPROGRESS), already freed by nf_ct_handle_fragments(), or still owned by us. Tell the caller which of those it is, and free the packet ourselves in the last case, which restores the TC_ACT_SHOT behaviour that predated the Fixes: commit.

Reproduced on v7.2-rc6 with a 54-byte frame carrying a 40-byte IPv6 header with nexthdr = 0 (hop-by-hop) and nothing after it, on a clsact ingress chain with "action ct". kmemleak reports one leaked 232-byte skbuff_head_cache object plus its 704-byte data buffer per packet; with this patch it reports none.

CVSS v3
7.5
EG Score
7.5(high)
EG Risk
38(Track)
EG Risk 38/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
Severity75% × 45%
Exploitation0% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
0%
EPSS %ILE
40%
KEV
Not listed

Published

August 22, 2026

Last Modified

August 25, 2026

Advisory Details (7)

Auto-updated Aug 25, 2026
No patch confirmed yet.
generic

net/sched: act_ct: fix sk_buff leak when the header checks reject a packet - kernel/git/stable/linux.git - Linux kernel stable tree

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

net/sched: act_ct: fix sk_buff leak when the header checks reject a packet - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/439d3e404f9d5e515911cc8132cde198b337c19e
generic

net/sched: act_ct: fix sk_buff leak when the header checks reject a packet - kernel/git/stable/linux.git - Linux kernel stable tree

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

net/sched: act_ct: fix sk_buff leak when the header checks reject a packet - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/47d99828591d0fe8be4b9c8992ff3b8e47968db9
generic

net/sched: act_ct: fix sk_buff leak when the header checks reject a packet - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/737873a59905a54ca0d2d127ef882f3f88bf4379
generic

net/sched: act_ct: fix sk_buff leak when the header checks reject a packet - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/23e97d594ddd0153020c506d5041048fbde1beb4
generic

net/sched: act_ct: fix sk_buff leak when the header checks reject a packet - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/b5dbecc2016e1692fd1c2532af9c41ba729cb747

Vendor Advisories for CVE-2026-74621(1)

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 29× in last 7d / 32× 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-08-30 02:26 UTCEG score recompute
  2. 2026-08-30 02:26 UTCGHSA enrichment
  3. 2026-08-30 01:22 UTCEPSS rescore
  4. 2026-08-29 13:41 UTCGHSA enrichment
  5. 2026-08-29 00:53 UTCEG score recompute
  6. 2026-08-29 00:53 UTCGHSA enrichment
  7. 2026-08-28 21:42 UTCEPSS rescore
  8. 2026-08-28 10:59 UTCGHSA enrichment
  9. 2026-08-27 22:14 UTCEG score recompute
  10. 2026-08-27 22:14 UTCGHSA enrichment
  11. 2026-08-27 14:25 UTCEPSS rescore
  12. 2026-08-27 09:30 UTCGHSA enrichment
  13. 2026-08-26 20:46 UTCEG score recompute
  14. 2026-08-26 20:45 UTCGHSA enrichment
  15. 2026-08-26 14:47 UTCEPSS rescore
  16. 2026-08-26 07:59 UTCGHSA enrichment
  17. 2026-08-25 19:14 UTCEG score recompute
  18. 2026-08-25 19:14 UTCGHSA enrichment
  19. 2026-08-25 13:49 UTCEPSS rescore
  20. 2026-08-25 06:30 UTCEG score recompute
  21. 2026-08-25 06:30 UTCGHSA enrichment
  22. 2026-08-25 05:45 UTCEG score recompute 7.50
  23. 2026-08-25 05:45 UTCGHSA enrichment
  24. 2026-08-25 05:45 UTCMITRE cvelistV5CVSS v3 → 7.5 · severity → HIGH
  25. 2026-08-24 14:18 UTCEPSS rescore
Show 7 more
  1. 2026-08-23 13:19 UTCGHSA enrichment
  2. 2026-08-23 13:19 UTCNVD update
  3. 2026-08-23 13:06 UTCGHSA enrichment
  4. 2026-08-23 13:05 UTCMITRE cvelistV5
  5. 2026-08-22 16:24 UTCNVD update
  6. 2026-08-22 15:42 UTCEG score recompute
  7. 2026-08-22 15:35 UTCMITRE cvelistV5first tracked

Frequently asked(5)

What is CVE-2026-74621?
CVE-2026-74621 is a high vulnerability published on August 22, 2026. In the Linux kernel, the following vulnerability has been resolved: net/sched: actct: fix skbuff leak when the header checks reject a packet tcfcthandle_fragments() runs its header sanity checks before handing anything to the defragmentation engine: if (family == NFPROTO_IPV4) err =…
When was CVE-2026-74621 disclosed?
CVE-2026-74621 was first published in the National Vulnerability Database on August 22, 2026, with the most recent update on August 25, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-74621 actively exploited?
CVE-2026-74621 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 60.0% of all scored CVEs.
What is the CVSS score of CVE-2026-74621?
CVE-2026-74621 has a CVSS v3 base score of 7.5 (NVD).
How do I remediate CVE-2026-74621?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-74621, 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-74621

Explore →

Is Your Infrastructure Affected by CVE-2026-74621?

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