Skip to main content

Linux Kernel EUVDEUVD-2026-55601

| CVE-2026-68415 HIGH
2026-08-10 Linux GHSA-f6q7-mj5x-h2px
7.8
CVSS 3.1 · Vendor: Linux
Share

Severity by source

Vendor (Linux) PRIMARY
7.8 HIGH
AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
vuln.today AI
6.4 MEDIUM

Requires CAP_NET_ADMIN (PR:H) and a timing race between module unload and GC execution (AC:H); kernel panic and potential code execution justify C:H/I:H/A:H.

3.1 AV:L/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H
4.0 AV:L/AC:H/AT:P/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
SUSE
4.7 MEDIUM
AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H
Red Hat
7.0 MEDIUM
qualitative

Primary rating from Vendor (Linux).

CVSS VectorVendor: Linux

Attack Vector
Local
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

5
Analysis Generated
Aug 14, 2026 - 02:42 vuln.today
CVSS changed
Aug 13, 2026 - 23:37 NVD
7.8 (HIGH)
Patch available
Aug 10, 2026 - 14:18 EUVD
CVE Published
Aug 10, 2026 - 12:04 cve.org
HIGH 7.8
CVE Published
Aug 10, 2026 - 12:04 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

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

xfrm: clear mode callbacks after failed mode setup

xfrm_state_gc_task can run long after a failed IPTFS state setup. In the reproduced case, __xfrm_init_state() cached x->mode_cbs, IPTFS setup returned -ENOMEM before publishing mode_data, and the temporary module reference from xfrm_get_mode_cbs() was dropped immediately. The dead state then kept x->mode_cbs until deferred GC ran after xfrm_iptfs had been unloaded.

Clear x->mode_cbs when mode init or clone fails before publishing mode_data. Those states never installed mode-specific state or the long-term IPTFS module pin, so deferred GC has nothing mode-specific to destroy and must not retain a callback table pointer past the temporary lookup reference.

The buggy scenario involves two paths, with each column showing the order within that path:

failed setup path:

  1. cache x->mode_cbs
  2. mode setup fails before mode_data
  3. drop the temporary module ref
  4. dead state keeps x->mode_cbs cached

GC/unload path:

  1. xfrm_state_put() queues GC work
  2. xfrm_iptfs unloads later
  3. xfrm_state_gc_task runs
  4. GC dereferences stale x->mode_cbs

This also covers the failed clone path where clone_state() returns before publishing mode_data.

Validation reproduced this kernel report: Kernel panic - not syncing: Fatal exception CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y failslab_stacktrace_filter matched xfrm_iptfs frames ack_error=-12 FAULT_INJECTION: forcing a failure BUG: unable to handle page fault Workqueue: events xfrm_state_gc_task RIP: xfrm_state_gc_task+0x142/0x650 Modules linked in: esp4_offload xfrm_user [last unloaded: xfrm_iptfs] Kernel panic - not syncing: Fatal exception

AnalysisAI

Stale mode_callbacks pointer dereference in the Linux kernel xfrm IPTFS subsystem causes kernel panic when deferred garbage collection runs after the xfrm_iptfs module has been unloaded following a failed IPTFS state initialization. The xfrm subsystem's __xfrm_init_state() caches x->mode_cbs before IPTFS setup completes, but releases the temporary module reference immediately on failure - leaving a dangling callback table pointer that xfrm_state_gc_task later dereferences against an unloaded module. No public exploit code exists and EPSS is 0.17% (6th percentile), though the vendor-assigned CVSS of 7.8 reflects worst-case kernel memory impact if the race is won.

Technical ContextAI

The vulnerability is in the Linux kernel's xfrm framework (the IPsec transformation layer), specifically its IPTFS (IP Traffic Flow Security, RFC 9347) mode implementation. When __xfrm_init_state() prepares a new IPTFS xfrm_state, it acquires a temporary module reference via xfrm_get_mode_cbs() and caches the resulting mode_callbacks table in x->mode_cbs. If IPTFS setup returns an error (here -ENOMEM) before mode_data is published, the temporary module reference is released but x->mode_cbs is left populated in the dead state. The dead state is later queued for deferred GC via xfrm_state_gc_task. If xfrm_iptfs is unloaded in the window between the failed setup and GC execution, xfrm_state_gc_task dereferences the now-invalid x->mode_cbs pointer - a use-after-free on kernel function pointer memory - producing a kernel panic. The same logic flaw exists in the failed clone_state() path. The CVE affects all kernels from commit 4b3faf610cc63bfac972711635eafbca5e7d7117 forward, per CPE cpe:2.3:a:linux:linux:*. CWE is listed as N/A by NVD, but the root cause is functionally CWE-416 (Use After Free) on a kernel code pointer.

RemediationAI

The primary fix is to upgrade to Linux kernel 6.18.42, 7.1.6, or 7.2-rc4, which clear x->mode_cbs when mode init or clone fails before mode_data is published, ensuring the deferred GC worker holds no stale callback pointer. Upstream fix commits are available at git.kernel.org/stable/c/9845a35986a6, git.kernel.org/stable/c/2538bd3cd1ff, and git.kernel.org/stable/c/c37a079230128a5 - distributions should track their respective stable branch fix. As a compensating control on systems that cannot be patched immediately, administrators can blacklist the xfrm_iptfs kernel module (add 'blacklist xfrm_iptfs' to /etc/modprobe.d/) and prevent dynamic loading; this fully eliminates the vulnerable code path at the cost of disabling IPTFS (RFC 9347 traffic flow confidentiality). Systems not using IPTFS-mode IPsec - which is the substantial majority of deployments - are not exposed to this code path and require no immediate compensating action beyond normal patch lifecycle.

Vendor StatusVendor

SUSE

Severity: Moderate
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 16.0 Not-Affected

Share

EUVD-2026-55601 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy