CVE-2026-46116

HIGHPre-NVD 7.87.8
EchelonGraph scoreMEDIUM confidence

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

Triggered by: GitHub Security Advisory CVSS
Sources: epss, ghsa, secondary
Trending — 4 sources updated this week
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: None knownExposed: 0

A fix is available — apply it.

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

xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete

KASAN reproduces a slab-use-after-free in __xfrm_state_delete()'s hlist_del_rcu calls under syzkaller load on linux-6.12.y stable (reproduced on 6.12.47, also reachable via the same code path on torvalds/master and on the ipsec tree). Nine unique signatures cluster in the xfrm_state lifecycle, the load-bearing one being:

BUG: KASAN: slab-use-after-free in __hlist_del include/linux/list.h:990 [inline] BUG: KASAN: slab-use-after-free in hlist_del_rcu include/linux/rculist.h:516 [inline] BUG: KASAN: slab-use-after-free in __xfrm_state_delete net/xfrm/xfrm_state.c Write of size 8 at addr ffff8881198bcb70 by task kworker/u8:9/435

Workqueue: netns cleanup_net Call Trace: __hlist_del / hlist_del_rcu __xfrm_state_delete xfrm_state_delete xfrm_state_flush xfrm_state_fini ops_exit_list cleanup_net

The other observed signatures hit the same slab object from __xfrm_state_lookup, xfrm_alloc_spi, __xfrm_state_insert and an OOB write variant of __xfrm_state_delete, all on the byseq/byspi hash chains.

__xfrm_state_delete() guards its byseq and byspi unhashes with value-based predicates:

if (x->km.seq) hlist_del_rcu(&x->byseq); if (x->id.spi) hlist_del_rcu(&x->byspi);

while everywhere else in the file (e.g. state_cache, state_cache_input) the safer hlist_unhashed() check is used. xfrm_alloc_spi() sets x->id.spi = newspi inside xfrm_state_lock and then immediately inserts into byspi, but a path that observes x->id.spi != 0 outside of xfrm_state_lock can still skip-or-hit the byspi unhash inconsistently with whether x is actually on the list. The same holds for x->km.seq versus byseq, and the bydst/bysrc unhashes have no predicate at all, so a second __xfrm_state_delete() on the same object writes through LIST_POISON pprev.

The defensive change here:

  • Use hlist_del_init_rcu() instead of hlist_del_rcu() on bydst,
bysrc, byseq and byspi so a second deletion is a no-op rather than a write through LIST_POISON pprev. The byseq/byspi nodes are already initialised in xfrm_state_alloc().
  • Test hlist_unhashed() rather than the value predicate for
byseq/byspi, so the unhash decision tracks list state rather than mutable scalar fields.

Empirical verification: applied this patch on top of v6.12.47, rebuilt, and re-ran the same syzkaller harness for 1h16m on a previously-crashy configuration that produced ~100 hits each of slab-use-after-free Read in xfrm_alloc_spi / Read in __xfrm_state_lookup / Write in __xfrm_state_delete. After the patch, 7.1M execs across 32 VMs at ~1550 exec/sec produced zero xfrm_state UAF/OOB hits. /proc/slabinfo confirms the xfrm_state slab is actively allocated and freed during the run (~143 KiB resident), so the fuzzer is still exercising those code paths -- they just no longer crash.

Reproduction:

  • Linux 6.12.47 x86_64 + KASAN_GENERIC + KASAN_INLINE + KCOV
  • syzkaller @ 746545b8b1e4c3a128db8652b340d3df90ce61db
  • 32 QEMU/KVM VMs x 2 vCPU on AWS c5.metal bare metal
  • 9 unique signatures collected in ~9h, all within xfrm_state
lifecycle

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

Published

May 28, 2026

Last Modified

September 15, 2026

Advisory Details (5)

Auto-updated Jun 4, 2026
No patch confirmed yet.
generic

xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete - kernel/git/stable/linux.git - Linux kernel stable tree

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

xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete - kernel/git/stable/linux.git - Linux kernel stable tree

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

xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/4980162de555cb838f1a189ce7d2cbf5d2e7b050
generic

xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/26edb0a3c99f9d958c212be68b21f1221614dcf0
generic

xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete - kernel/git/stable/linux.git - Linux kernel stable tree

https://git.kernel.org/stable/c/14acf9652e5690de3c7486c6db5fb8dafd0a32a3

Patch Availability(24)

Vendor / EcosystemFixed in / PatchReleasedSource
ubuntulinux-tools-nvidia-hwe-26.04 (7.0.0-2016.16) @ resolute2026-09-15ubuntu
ubuntulinux-tools-gcp-edge (7.0.0-1011.11~24.04.1) @ noble2026-09-15ubuntu
ubuntulinux-tools-raspi-realtime-6.8 (6.8.0-2050.52) @ noble2026-09-15ubuntu
ubuntulinux-virtual-hwe-26.04-edge (7.0.0-28.28) @ resolute2026-09-15ubuntu
ubuntulinux-tools-realtime-hwe-22.04 (6.8.1-1056.57~22.04.2) @ jammy2026-09-15ubuntu
ubuntulinux-tools-oem-7.0 (7.0.0-1009.9) @ resolute2026-09-15ubuntu
ubuntulinux-virtual-hwe-24.04-edge (7.0.0-28.28~24.04.1) @ noble2026-09-15ubuntu
ubuntulinux-tools-gcp-fips-6.8 (6.8.0-1064.72+fips1) @ noble2026-09-15ubuntu
ubuntulinux-tools-oracle-7.0 (7.0.0-1008.8) @ resolute2026-09-15ubuntu
redhatkpatch-patch2026-08-24redhat
redhatkernel-0:4.18.0-372.204.1.el8_62026-07-31redhat
redhatkernel-0:4.18.0-305.199.1.el8_42026-07-30redhat
redhatkernel-rt-0:5.14.0-284.183.1.rt14.468.el9_22026-07-30redhat
redhatkernel-0:5.14.0-284.183.1.el9_22026-07-29redhat
redhatkernel-0:4.18.0-477.156.1.el8_82026-07-29redhat
redhatkernel-0:5.14.0-570.129.1.el9_62026-07-23redhat
redhatkernel-0:5.14.0-427.139.1.el9_42026-07-22redhat
redhatkernel-0:6.12.0-211.37.1.el10_22026-07-21redhat
redhatkernel-0:3.10.0-1160.156.1.el72026-07-17redhat
redhatkernel-rt-0:3.10.0-1160.156.1.rt56.1308.el72026-07-17redhat
redhatkernel-rt-0:4.18.0-553.144.1.rt7.485.el8_102026-07-14redhat
redhatkernel-0:4.18.0-553.144.1.el8_102026-07-14redhat
redhatkernel-0:6.12.0-55.88.1.el10_02026-07-14redhat
redhatkernel-0:5.14.0-687.22.1.el9_82026-07-06redhat

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.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.88-1~bpo12+1 (21 versions)6.12.88-1
Debian:14(1)
PackageVulnerable rangeFixed inDependents
linux6.12.100-1 ... 7.0.7-1~bpo13+1 (136 versions)7.0.7-1

Weakness Classification(2)

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

Additional Vendor Advisories

(6)

Data Freshness Timeline

(refreshed 15× in last 7d / 59× 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 327 total refreshes for this CVE.

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

Frequently asked(5)

What is CVE-2026-46116?
CVE-2026-46116 is a high vulnerability published on May 28, 2026. In the Linux kernel, the following vulnerability has been resolved: xfrm: defensively unhash xfrmstate lists in xfrmstate_delete KASAN reproduces a slab-use-after-free in xfrmstatedelete()'s hlistdelrcu calls under syzkaller load on linux-6.12.y stable (reproduced on 6.12.47, also reachable via the…
When was CVE-2026-46116 disclosed?
CVE-2026-46116 was first published in the National Vulnerability Database on May 28, 2026, with the most recent update on September 15, 2026. EchelonGraph re-ingests CVE updates from NVD on a 2-hour cycle, so this page reflects the latest published state.
Is CVE-2026-46116 actively exploited?
CVE-2026-46116 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 97.0% of all scored CVEs.
What is the CVSS score of CVE-2026-46116?
CVE-2026-46116 has a CVSS v3 base score of 7.8 (NVD).
How do I remediate CVE-2026-46116?
Patch to the fixed version published by the affected vendor. Where vendor advisories exist for CVE-2026-46116, 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-46116

Explore →

Is Your Infrastructure Affected by CVE-2026-46116?

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