HOMEVULNERABILITIESCVE-2026-31406
NONE

CVE-2026-31406

Published: April 6, 2026· Updated: Apr 7, 2026

EPSS:0.01%probability of exploitation in 30 daysPercentile:0.7th

Official Description

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

xfrm: Fix work re-schedule after cancel in xfrm_nat_keepalive_net_fini()

After cancel_delayed_work_sync() is called from

xfrm_nat_keepalive_net_fini(), xfrm_state_fini() flushes remaining

states via __xfrm_state_delete(), which calls

xfrm_nat_keepalive_state_updated() to re-schedule nat_keepalive_work.

The following is a simple race scenario:

cpu0 cpu1

cleanup_net() [Round 1]

ops_undo_list()

xfrm_net_exit()

xfrm_nat_keepalive_net_fini()

cancel_delayed_work_sync(nat_keepalive_work);

xfrm_state_fini()

xfrm_state_flush()

xfrm_state_delete(x)

__xfrm_state_delete(x)

xfrm_nat_keepalive_state_updated(x)

schedule_delayed_work(nat_keepalive_work);

rcu_barrier();

net_complete_free();

net_passive_dec(net);

llist_add(&net->defer_free_list, &defer_free_list);

cleanup_net() [Round 2]

rcu_barrier();

net_complete_free()

kmem_cache_free(net_cachep, net);

nat_keepalive_work()

// on freed net

To prevent this, cancel_delayed_work_sync() is replaced with

disable_delayed_work_sync().

NVD Source

Technical Analysis

CVE-2026-31406 requires local access, meaning attackers must already have a foothold on the target system.

Exploitation requires some privileges, which limits the exposure to scenarios where an attacker has already gained initial access.

Affected Vendors & Products

Mentioned vendors (from description):
Linux
CPE data not yet available in NVD for this CVE.

Exploit & PoC Resources

NO KNOWN EXPLOITNo public exploit confirmed at this time
External links open in a new tab. Always verify in a controlled environment before use.

All References (4)

Quick Facts

CVE IDCVE-2026-31406
SeverityNONE
CISA KEVNo
EPSS (30d)0.01%
PublishedApr 6, 2026

Recommended Actions

  • Apply vendor patches immediately
  • Monitor CVE-2026-31406 in threat intel feeds
  • Review IDS/IPS signatures for exploitation attempts
Data sourced from NVD (NIST), CISA KEV, and EPSS (FIRST). Analysis generated by CTIWATCH.COM. CVE data is provided under the NVD usage policy.