CVE-2026-63801

HIGHPre-NVD 8.88.8
EchelonGraph scoreMEDIUM confidence

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

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — Patch released this week
8.8EG
EchelonGraph verdictPlan a fixSerious severity, but no confirmed exploitation yet.
  • High severity, but no confirmed exploitation yet
CISA-KEV: Not listedEPSS PROB: 1%CVSS: 8.8Exploit: None knownExposed: 0

A fix is available — apply it.

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

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done

tipc_aead_decrypt() goes straight from tipc_bearer_hold(b) to crypto_aead_decrypt(req) without taking a reference on the netns, unlike the encrypt path. When crypto_aead_decrypt() is offloaded asynchronously (e.g. the SIMD aead wrapper queuing to cryptd), the cryptd worker runs tipc_aead_decrypt_done() later. If the bearer's netns is torn down in the meantime, cleanup_net() -> tipc_exit_net() -> tipc_crypto_stop() frees the per-netns tipc_crypto, and the completion then reads it: tipc_aead_decrypt_done() dereferences aead->crypto->stats and aead->crypto->net, and tipc_crypto_rcv_complete() dereferences aead->crypto->aead[] and the node table -- reading freed memory.

Decoded KASAN splat (v7.1-rc7, CONFIG_KASAN_INLINE + TIPC + TIPC_CRYPTO):

BUG: KASAN: slab-use-after-free in tipc_aead_decrypt_done (net/tipc/crypto.c:999) Read of size 8 at addr ffff8881056258a8 by task kworker/u16:2/51 Workqueue: events_unbound Call Trace: tipc_aead_decrypt_done (net/tipc/crypto.c:999) process_one_work (kernel/workqueue.c:3314) worker_thread (kernel/workqueue.c:3397 kernel/workqueue.c:3478) kthread (kernel/kthread.c:436) ret_from_fork (arch/x86/kernel/process.c:158) ret_from_fork_asm (arch/x86/entry/entry_64.S:245)

Allocated by task 169: __kasan_kmalloc (mm/kasan/common.c:398 mm/kasan/common.c:415) tipc_crypto_start (net/tipc/crypto.c:1502) tipc_init_net (net/tipc/core.c:72) ops_init (net/core/net_namespace.c:137) setup_net (net/core/net_namespace.c:446) copy_net_ns (net/core/net_namespace.c:579) create_new_namespaces (kernel/nsproxy.c:132) __x64_sys_unshare (kernel/fork.c:3316) do_syscall_64 (arch/x86/entry/syscall_64.c:63) entry_SYSCALL_64_after_hwframe (arch/x86/entry/entry_64.S:121)

Freed by task 8: kfree (mm/slub.c:6566) tipc_exit_net (net/tipc/core.c:119) cleanup_net (net/core/net_namespace.c:704) process_one_work (kernel/workqueue.c:3314) kthread (kernel/kthread.c:436)

This is the same class of bug that commit e279024617134 ("net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done") fixed for the encrypt side. The encrypt path takes maybe_get_net(aead->crypto->net) before crypto_aead_encrypt() and drops it with put_net() on the synchronous return paths and in tipc_aead_encrypt_done(); the -EINPROGRESS/-EBUSY return keeps the reference for the async callback to release. The decrypt path was left without the equivalent guard.

Mirror the encrypt-side fix on the decrypt path: take a net reference before crypto_aead_decrypt() (failing with -ENODEV and the matching bearer put if it cannot be acquired), keep it across the -EINPROGRESS/-EBUSY async return, and drop it with put_net() on the synchronous success/error return and at the end of tipc_aead_decrypt_done().

Reproduced under KASAN on v7.1-rc7: a UDP bearer with a cluster key is flooded with crafted encrypted frames from an unknown peer (driving the cluster-key decrypt path) while the bearer's netns is repeatedly torn down. The completion must run asynchronously to outlive tipc_crypto_stop(); on x86 the stock aesni gcm(aes) now decrypts synchronously, so the async path was exercised via cryptd offload. The unguarded aead->crypto dereference in tipc_aead_decrypt_done() is the unpatched upstream path; tipc_aead_decrypt() still lacks maybe_get_net(aead->crypto->net), so the completion can outlive the free on any config where crypto_aead_decrypt() goes async.

Found by 0sec automated security-research tooling (https://0sec.ai).

CVSS v3
8.8
EG Score
8.8(medium)
EG Risk
44(Track)
EG Risk 44/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
Severity88% × 45%
Exploitation1% × 40%
Automatability30% × 15%
Action: Routine — remediate on your standard cadence.
EPSS PROB
1%
EPSS %ILE
43%
KEV
Not listed

Published

July 19, 2026

Last Modified

August 17, 2026

Advisory Details (8)

Auto-updated Jul 20, 2026
No patch confirmed yet.
generic

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done - kernel/git/stable/linux.git - Linux kernel stable tree

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

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done - kernel/git/stable/linux.git - Linux kernel stable tree

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

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done - kernel/git/stable/linux.git - Linux kernel stable tree

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

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done - kernel/git/stable/linux.git - Linux kernel stable tree

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

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/2d1f21419ec121232c916d3a3fc9b6766473a0e7
generic

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done - kernel/git/stable/linux.git - Linux kernel stable tree

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

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/171d31245d11bf84836fad3b394cb465a4d008ec
generic

tipc: fix slab-use-after-free Read in tipc_aead_decrypt_done - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/0a780653b2a7569a7af9be7d0b00b1251baca63a

Patch Availability(7)

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 (55 versions)5.10.262-1
linux-6.16.1.106-3~deb11u1 ... 6.1.176-1~deb11u1 (21 versions)6.1.177-1~deb11u1
Debian:12(1)
PackageVulnerable rangeFixed inDependents
linux6.1.106-1 ... 6.1.99-1 (54 versions)6.1.177-1
Debian:13(1)
PackageVulnerable rangeFixed inDependents
linux6.12.38-1 ... 6.12.95-1~bpo12+1 (29 versions)6.12.95-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.1~rc7-1~exp1 (156 versions)7.1.3-1

Weakness Classification(1)

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

Additional Vendor Advisories

(4)

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 17× in last 7d / 97× 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 228 total refreshes for this CVE.

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

Frequently asked(5)

What is CVE-2026-63801?
CVE-2026-63801 is a high vulnerability published on July 19, 2026. In the Linux kernel, the following vulnerability has been resolved: tipc: fix slab-use-after-free Read in tipcaeaddecrypt_done tipcaeaddecrypt() goes straight from tipcbearerhold(b) to cryptoaeaddecrypt(req) without taking a reference on the netns, unlike the encrypt path. When cryptoaeaddecrypt()…
When was CVE-2026-63801 disclosed?
CVE-2026-63801 was first published in the National Vulnerability Database on July 19, 2026, with the most recent update on August 17, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-63801 actively exploited?
CVE-2026-63801 is not currently on CISA's Known Exploited Vulnerabilities catalog. FIRST EPSS estimates a 1% probability of exploitation in the next 30 days, which ranks it in the top 57.3% of all scored CVEs.
What is the CVSS score of CVE-2026-63801?
CVE-2026-63801 has a CVSS v3 base score of 8.8 (NVD).
How do I remediate CVE-2026-63801?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-63801, 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-63801

Explore →

Is Your Infrastructure Affected by CVE-2026-63801?

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