CVE-2026-64436

HIGHPre-NVD 7.17.1
EchelonGraph scoreMEDIUM confidence

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

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — 3 sources updated this week
7.1EG
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.1Exploit: 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: af_key: initialize alg_key_len for IPComp states

pfkey_msg2xfrm_state() handles the IPComp (SADB_X_SATYPE_IPCOMP) case by allocating x->calg and copying only the algorithm name:

x->calg = kmalloc_obj(*x->calg); if (!x->calg) { err = -ENOMEM; goto out; } strcpy(x->calg->alg_name, a->name); x->props.calgo = sa->sadb_sa_encrypt;

Unlike the authentication (x->aalg) and encryption (x->ealg) branches of the same function, the compression branch never initializes calg->alg_key_len. IPComp carries no key and the allocation only reserves sizeof(struct xfrm_algo) (i.e. no room for a key), so the field is left containing uninitialized slab data.

calg->alg_key_len is later used as a length by xfrm_algo_clone() when an IPComp state is cloned during XFRM_MSG_MIGRATE:

xfrm_state_migrate() xfrm_state_clone_and_setup() x->calg = xfrm_algo_clone(orig->calg); kmemdup(orig, xfrm_alg_len(orig));

where xfrm_alg_len() returns sizeof(*alg) + (alg_key_len + 7) / 8. With a non-zero garbage alg_key_len, kmemdup() reads past the end of the 68-byte calg object. Adding an IPComp SA via PF_KEY and then migrating it triggers (net-next, KASAN, init_on_alloc=0):

BUG: KASAN: slab-out-of-bounds in kmemdup_noprof+0x44/0x60 Read of size 4164 at addr ff11000025a74980 by task diag2/9287 CPU: 3 UID: 0 PID: 9287 Comm: diag2 7.1.0-rc6-g903db046d557 #1 Call Trace: dump_stack_lvl+0x10e/0x1f0 print_report+0xf7/0x600 kasan_report+0xe4/0x120 kasan_check_range+0x105/0x1b0 __asan_memcpy+0x23/0x60 kmemdup_noprof+0x44/0x60 xfrm_state_migrate+0x70a/0x1da0 xfrm_migrate+0x753/0x18a0 xfrm_do_migrate+0xb47/0xf10 xfrm_user_rcv_msg+0x411/0xb50 netlink_rcv_skb+0x158/0x420 xfrm_netlink_rcv+0x71/0x90 netlink_unicast+0x584/0x850 netlink_sendmsg+0x8b0/0xdc0 ____sys_sendmsg+0x9f7/0xb90 ___sys_sendmsg+0x134/0x1d0 __sys_sendmsg+0x16d/0x220 do_syscall_64+0x116/0x7d0 entry_SYSCALL_64_after_hwframe+0x77/0x7f

Allocated by task 9287: kasan_save_stack+0x33/0x60 kasan_save_track+0x14/0x30 __kasan_kmalloc+0xaa/0xb0 pfkey_add+0x2652/0x2ea0 pfkey_process+0x6d0/0x830 pfkey_sendmsg+0x42c/0x850 __sys_sendto+0x461/0x4b0 __x64_sys_sendto+0xe0/0x1c0 do_syscall_64+0x116/0x7d0 entry_SYSCALL_64_after_hwframe+0x77/0x7f

The buggy address belongs to the object at ff11000025a74980 which belongs to the cache kmalloc-96 of size 96 The buggy address is located 0 bytes inside of allocated 68-byte region [ff11000025a74980, ff11000025a749c4)

Depending on the uninitialized value the same field can instead request an oversized kmemdup() allocation and make the migration clone fail.

The XFRM netlink path is not affected: verify_one_alg() rejects an XFRMA_ALG_COMP attribute shorter than xfrm_alg_len(), so a calg added via XFRM_MSG_NEWSA is always self-consistent.

Initialize calg->alg_key_len to 0, matching the aalg/ealg branches.

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

Published

July 25, 2026

Last Modified

August 17, 2026

Advisory Details (8)

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

net: af_key: initialize alg_key_len for IPComp states - kernel/git/stable/linux.git - Linux kernel stable tree

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

net: af_key: initialize alg_key_len for IPComp states - kernel/git/stable/linux.git - Linux kernel stable tree

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

net: af_key: initialize alg_key_len for IPComp states - kernel/git/stable/linux.git - Linux kernel stable tree

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

net: af_key: initialize alg_key_len for IPComp states - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/6de2a650917bedaaefd65b17cede83c5e2c1dedd
generic

net: af_key: initialize alg_key_len for IPComp states - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/58e82fc3dedb57b1432292504415b224fd2d6acb
generic

net: af_key: initialize alg_key_len for IPComp states - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/3f63d1752d90c0e28be931a48ab5d89bc97d637d
generic

net: af_key: initialize alg_key_len for IPComp states - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/273c06b81d2e902b21acc801ae18c8276c8a9b69
generic

net: af_key: initialize alg_key_len for IPComp states - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/01b9115b55018123ef2449ac4951f89147a8428e

Vendor Advisories for CVE-2026-64436(2)

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

Affected Packages

(6 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.177-1~deb11u1 (22 versions)6.1.180-1~deb11u1
Debian:12(2)
PackageVulnerable rangeFixed inDependents
linux6.1.106-1 ... 6.1.99-1 (55 versions)6.1.180-1
linux-6.126.12.100-1~deb12u1
Debian:13(1)
PackageVulnerable rangeFixed inDependents
linux6.12.38-1 ... 6.12.95-1~bpo12+1 (30 versions)6.12.96-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.1~rc7-1~exp1 (156 versions)7.1.4-1

Data Freshness Timeline

(refreshed 20× in last 7d / 110× 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 141 total refreshes for this CVE.

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

Frequently asked(5)

What is CVE-2026-64436?
CVE-2026-64436 is a high vulnerability published on July 25, 2026. In the Linux kernel, the following vulnerability has been resolved: net: afkey: initialize algkey_len for IPComp states pfkeymsg2xfrmstate() handles the IPComp (SADBXSATYPE_IPCOMP) case by allocating x->calg and copying only the algorithm name: x->calg = kmalloc_obj(*x->calg); if (!x->calg) { err =…
When was CVE-2026-64436 disclosed?
CVE-2026-64436 was first published in the National Vulnerability Database on July 25, 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-64436 actively exploited?
CVE-2026-64436 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 98.0% of all scored CVEs.
What is the CVSS score of CVE-2026-64436?
CVE-2026-64436 has a CVSS v3 base score of 7.1 (NVD).
How do I remediate CVE-2026-64436?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-64436, 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-64436

Explore →

Is Your Infrastructure Affected by CVE-2026-64436?

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