CVE & CISA-KEV Catalog

CVE-2026-46116

MEDIUM
6.1
CVSS v3
NVD

Description

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

How to fix

Remediation Available
linuxDebian
Fixed in:5.10.262-1CVE-2026-46116
Fixed in:6.1.176-1CVE-2026-46116
Fixed in:6.12.88-1CVE-2026-46116
Fixed in:7.0.7-1CVE-2026-46116
bpftoolRocky
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7.ppc64RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:4.18.0-553.144.1.el8_10RHSA-2026:39179
Fixed in:0:4.18.0-372.204.1.el8_6RHSA-2026:49033
Fixed in:0:4.18.0-477.156.1.el8_8RHSA-2026:47869
Fixed in:0:4.18.0-553.144.1.el8_10RHSA-2026:39179
bpftoolRed Hat / RHEL
Fixed in:0:3.10.0-1160.156.1.el7.ppc64RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:4.18.0-372.204.1.el8_6RHSA-2026:49033
Fixed in:0:4.18.0-477.156.1.el8_8RHSA-2026:47869
Fixed in:0:4.18.0-477.156.1.el8_8RHSA-2026:47869
Fixed in:0:4.18.0-553.144.1.el8_10RHSA-2026:39179
bpftool-debuginfoRocky
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7.ppc64RHSA-2026:41235
Fixed in:0:4.18.0-553.144.1.el8_10RHSA-2026:39179
Fixed in:0:4.18.0-477.156.1.el8_8RHSA-2026:47869
Fixed in:0:4.18.0-305.199.1.el8_4RHSA-2026:47633
Fixed in:0:4.18.0-553.144.1.el8_10RHSA-2026:39179
bpftool-debuginfoRed Hat / RHEL
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7RHSA-2026:41235
Fixed in:0:3.10.0-1160.156.1.el7.ppc64RHSA-2026:41235
Fixed in:0:4.18.0-372.204.1.el8_6RHSA-2026:49033
Fixed in:0:4.18.0-553.144.1.el8_10RHSA-2026:39179
Fixed in:0:4.18.0-553.144.1.el8_10RHSA-2026:39179
Fixed in:0:4.18.0-305.199.1.el8_4RHSA-2026:47633
kernelRocky
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
kernelRed Hat / RHEL
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
kernel-64kRed Hat / RHEL
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
kernel-64kRocky
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
kernel-64k-coreRocky
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
kernel-64k-coreRed Hat / RHEL
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
kernel-64k-debugRed Hat / RHEL
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
kernel-64k-debugRocky
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
kernel-64k-debug-coreRocky
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
kernel-64k-debug-coreRed Hat / RHEL
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
kernel-64k-debug-debuginfoRocky
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
kernel-64k-debug-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
kernel-64k-debug-develRocky
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
kernel-64k-debug-develRed Hat / RHEL
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
kernel-64k-debug-devel-matchedRed Hat / RHEL
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
kernel-64k-debug-devel-matchedRocky
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
kernel-64k-debug-modulesRocky
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
kernel-64k-debug-modulesRed Hat / RHEL
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
kernel-64k-debug-modules-coreRocky
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
kernel-64k-debug-modules-coreRed Hat / RHEL
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
kernel-64k-debug-modules-extraRed Hat / RHEL
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
kernel-64k-debug-modules-extraRocky
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
kernel-64k-debuginfoRed Hat / RHEL
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
kernel-64k-debuginfoRocky
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
kernel-64k-develRed Hat / RHEL
Fixed in:0:6.12.0-211.37.1.el10_2RHSA-2026:42919
Fixed in:0:6.12.0-55.88.1.el10_0RHSA-2026:39371
Fixed in:0:5.14.0-284.183.1.el9_2RHSA-2026:47739
Fixed in:0:5.14.0-687.22.1.el9_8RHSA-2026:36018
Fixed in:0:5.14.0-427.139.1.el9_4RHSA-2026:43231
Fixed in:0:5.14.0-570.129.1.el9_6RHSA-2026:44385

This vulnerability affects an unusually large number of packages. The highest-confidence fixes are shown above; the full list is longer. Check the referenced advisories for complete coverage.

TridentStack Control can deploy fixes like this automatically across your Windows, macOS, and Linux fleet. See how it works

Remediation is compiled from vendor and distribution security advisories. Always confirm against the linked source for your exact version and platform.

CVSS v3 Vector

Exploitability

Attack VectorLocal
Attack ComplexityLow
Privileges RequiredLow
User InteractionNone
ScopeUnchanged

Impact

ConfidentialityHigh
IntegrityNone
AvailabilityLow

CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:L/E:U

Exploit Intelligence

0.13%probability of exploitation in 30 days
3rdpercentile

Low risk: more likely to be exploited than 3% of all known CVEs.

References

Related Vulnerabilities

Other CWE-416 (Use After Free) vulnerabilities, ordered by exploit likelihood. View all

CVESeverityCVSSEPSSExploitedFix
CVE-2019-0708Critical9.8100%KEV + Ransom-
CVE-2021-31166Critical9.8100%KEVFix
CVE-2015-5119Critical9.899%KEV-
CVE-2010-3962High8.197%KEV-
CVE-2015-0313Critical9.896%KEVFix
CVE-2021-34833High7.896%--

Common questions

How do I fix CVE-2026-46116?

Published advisories record a fix for 373 affected products. The "How to fix" section on this page lists the fixed version and source advisory for each one, so apply the entry matching what you actually run.

Is CVE-2026-46116 being actively exploited?

Not that we know of. CVE-2026-46116 is not in the CISA Known Exploited Vulnerabilities catalog. Its EPSS score of 0.13% is the estimated probability that it will be exploited in the next 30 days. That is higher than 3% of all scored CVEs.

How severe is CVE-2026-46116?

CVE-2026-46116 has a CVSS v3 base score of 6.1, rated moderate. CVSS rates the technical impact if the vulnerability is exploited, not how likely that is, so weigh it alongside the exploit-prediction score when you decide what to patch first.

What does CVE-2026-46116 affect?

Published advisories record a fix for linux (Debian), bpftool (Rocky), bpftool (Red Hat / RHEL), bpftool-debuginfo (Rocky), and 369 more. The list on this page is capped, so there may be more.

Embed a live status badge for CVE-2026-46116
CVE-2026-46116 severity badge

Markdown

[![CVE-2026-46116](https://tridentstack.com/cve/badge/CVE-2026-46116.svg)](https://tridentstack.com/cve/CVE-2026-46116)

HTML

<a href="https://tridentstack.com/cve/CVE-2026-46116"><img src="https://tridentstack.com/cve/badge/CVE-2026-46116.svg" alt="CVE-2026-46116"></a>

Find and fix vulnerabilities across your fleet

TridentStack Control continuously scans your Windows, macOS, and Linux fleet for known vulnerabilities, prioritizes them by severity and active exploitation, and patches them automatically.

See how it worksStart freeThis CVE lookup is free and always will be.

This product uses NVD data but is not endorsed or certified by the NVD. EPSS scores courtesy of FIRST.org (https://www.first.org/epss). Source: CISA KEV Catalog. Data as of 2026-08-25.