In the Linux kernel, the following vulnerability has been resolved: timers: Fix NULL function pointer race in timer_shutdown_sync() There is a race condition between timer_shutdown_sync() and timer expiration that can lead to hitting a WARN_ON in expire_timers(). The issue occurs when timer_shutdown_sync() clears the timer function to NULL while the timer is still running on another CPU. The race scenario looks like this: CPU0 CPU1 <SOFTIRQ> lock_timer_base() expire_timers() base->running_timer = timer; unlock_timer_base() [call_timer_fn enter] mod_timer() ... timer_shutdown_sync() lock_timer_base() // For now, will not detach the timer but only clear its function to NULL if (base->running_timer != timer) ret = detach_if_pending(timer, base, true); if (shutdown) timer->function = NULL; unlock_timer_base() [call_timer_fn exit] lock_timer_base() base->running_timer = NULL; unlock_timer_base() ... // Now timer is pending while its function set to NULL. // next timer trigger <SOFTIRQ> expire_timers() WARN_ON_ONCE(!fn) // hit ... lock_timer_base() // Now timer will detach if (base->running_timer != timer) ret = detach_if_pending(timer, base, true); if (shutdown) timer->function = NULL; unlock_timer_base() The problem is that timer_shutdown_sync() clears the timer function regardless of whether the timer is currently running. This can leave a pending timer with a NULL function pointer, which triggers the WARN_ON_ONCE(!fn) check in expire_timers(). Fix this by only clearing the timer function when actually detaching the timer. If the timer is running, leave the function pointer intact, which is safe because the timer will be properly detached when it finishes running.
Conclusion & alert: CVE-2025-68214 is rated Low Risk (20.5/100): CVSS Medium severity, with low exploitation likelihood (EPSS 0.02%). Mandatory action: Monitor for updates and reassess as exploit intelligence or EPSS changes.
Risk is dynamic; we continuously reassess and refresh what is shown on this page as upstream context changes.
EPSS lead: Daily EPSS estimates relative likelihood of exploitation; percentile ranks this CVE among scored vulnerabilities (higher = more severe relative rank).
| # | Date | Old EPSS score | New EPSS score | Delta (New - Old) |
|---|---|---|---|---|
| 1 | 2026-02-27 | 0.05% | 0.02% | -0.03% |
| 2 | 2026-02-12 | 0.02% | 0.05% | +0.03% |
| 3 | 2025-12-17 | — | 0.02% | — |
Full EPSS history (3 records total)
CVSS metrics for this CVE.
| Base score | Version | Severity | Vector | Exploitability | Impact | Score source |
|---|---|---|---|---|---|---|
| 4.7 | 3.1 | MEDIUM |
|
1.0 | 3.6 | [email protected] |
| vendor | priority | summary | link |
|---|---|---|---|
debian
|
unimportant | CVE-2025-68214 unimportant priority: Debian including 2 source packages (linux, linux-6.1), 6 status rows across 5 suites (bookworm, bullseye, forky, sid, trixie): resolved 6. | https://security-tracker.debian.org/tracker/CVE-2025-68214 |
redhat
|
low | — | https://access.redhat.com/security/cve/CVE-2025-68214 |
suse
|
medium | CVE-2025-68214 severity moderate: SUSE including 8 source package names (kernel-default, kernel-default-base, …), 30 product×package rows across 6 product lines (SUSE Linux Enterprise Server 11 SP4 LTSS, SUSE Linux Enterprise Server 11 SP4 LTSS EXTREME CORE, … (6 product lines)): Known Not Affected 30. | https://www.suse.com/security/cve/CVE-2025-68214/ |
ubuntu
|
medium | CVE-2025-68214 medium priority: Ubuntu including 157 source packages (linux, linux-allwinner-5.19, …), 1405 status rows across 9 suites (bionic, focal, jammy, noble, plucky, questing, trusty, upstream, xenial): DNE 1010, ignored 178, released 129, needed 62, not-affected 24, pending 2. | https://ubuntu.com/security/CVE-2025-68214 |
| Vendor | Product | Version | Raw CPE |
|---|---|---|---|
| linux | linux_kernel | >= 6.2, < 6.6.118 | cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* |
| linux | linux_kernel | >= 6.7, < 6.12.60 | cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* |
| linux | linux_kernel | >= 6.13, < 6.17.10 | cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* |
| linux | linux_kernel | 6.1.158 | cpe:2.3:o:linux:linux_kernel:6.1.158:*:*:*:*:*:*:* |
| linux | linux_kernel | 6.18 | cpe:2.3:o:linux:linux_kernel:6.18:rc1:*:*:*:*:*:* |
| linux | linux_kernel | 6.18 | cpe:2.3:o:linux:linux_kernel:6.18:rc2:*:*:*:*:*:* |
| linux | linux_kernel | 6.18 | cpe:2.3:o:linux:linux_kernel:6.18:rc3:*:*:*:*:*:* |
| linux | linux_kernel | 6.18 | cpe:2.3:o:linux:linux_kernel:6.18:rc4:*:*:*:*:*:* |
| linux | linux_kernel | 6.18 | cpe:2.3:o:linux:linux_kernel:6.18:rc5:*:*:*:*:*:* |
| linux | linux_kernel | 6.18 | cpe:2.3:o:linux:linux_kernel:6.18:rc6:*:*:*:*:*:* |