目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CVE-2025-68214— Linux kernel 安全漏洞

AI 预测 5.3 利用难度: 中等 EPSS 0.12% · P2

可能的 ATT&CK 技术 1AI

T1499 · Endpoint Denial of Service

影响版本矩阵 14

厂商产品版本范围状态
LinuxLinuxdebbcf812d735003c96c5e5968a3cfa4e1fbd1af< ba43ac025c4318241f8edf94f31d2eebab86991baffected
334c33aa487be406a149c8b87c38c8399d2dba8d< 1a975716cc8977f461e45e28e3e5977d46ad7a6aaffected
0cc04e80458a822300b93f82ed861a513edde194< 6665fbd7730b26d770c232b20d1b907e6a67a914affected
0cc04e80458a822300b93f82ed861a513edde194< 176725f4848376530a0f0da9023f956afcc33585affected
0cc04e80458a822300b93f82ed861a513edde194< a01efa7a780c42ac5170a949bd95c9786ffcc60aaffected
0cc04e80458a822300b93f82ed861a513edde194< 20739af07383e6eb1ec59dcd70b72ebfa9ac362caffected
6.1.158< 6.1.159affected
6.2affected
… +6 条更多
获取后续新漏洞提醒登录后订阅

一、 漏洞 CVE-2025-68214 基础信息

漏洞信息

对漏洞内容有疑问?看看神龙的深度分析是否有帮助!
查看神龙十问 ↗

尽管我们使用了先进的大模型技术,但其输出仍可能包含不准确或过时的信息。神龙努力确保数据的准确性,但请您根据实际情况进行核实和判断。

Vulnerability Title
timers: Fix NULL function pointer race in timer_shutdown_sync()
来源: 美国国家漏洞数据库 NVD
Vulnerability Description
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.
来源: 美国国家漏洞数据库 NVD
CVSS Information
N/A
来源: 美国国家漏洞数据库 NVD
Vulnerability Type
N/A
来源: 美国国家漏洞数据库 NVD
Vulnerability Title
Linux kernel 安全漏洞
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Description
Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于timer_shutdown_sync与定时器到期存在竞争条件,可能导致WARN_ON触发。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商产品影响版本CPE订阅
LinuxLinux debbcf812d735003c96c5e5968a3cfa4e1fbd1af ~ ba43ac025c4318241f8edf94f31d2eebab86991b -
LinuxLinux 6.2 -

二、漏洞 CVE-2025-68214 的公开POC

#POC 描述源链接神龙链接
AI 生成 POC高级

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2025-68214 的情报信息

登录查看更多情报信息。

CVE-2025-68214 其他参考 (5)

同批安全公告 · Linux · 2025-12-16 · 共 157 条

CVE-2025-682639.8 CRITICALLinux kernel 安全漏洞
CVE-2025-68260Linux kernel 安全漏洞
CVE-2025-68251Linux kernel 安全漏洞
CVE-2025-68252Linux kernel 安全漏洞
CVE-2025-68253Linux kernel 安全漏洞
CVE-2025-68254Linux kernel 安全漏洞
CVE-2025-68255Linux kernel 安全漏洞
CVE-2025-68256Linux kernel 安全漏洞
CVE-2025-68257Linux kernel 安全漏洞
CVE-2025-68258Linux kernel 安全漏洞
CVE-2025-68259Linux kernel 安全漏洞
CVE-2025-68265Linux kernel 安全漏洞
CVE-2025-68283Linux kernel 安全漏洞
CVE-2025-68282Linux kernel 安全漏洞
CVE-2025-68281Linux kernel 安全漏洞
CVE-2025-68266Linux kernel 安全漏洞
CVE-2025-68262Linux kernel 安全漏洞
CVE-2025-68261Linux kernel 安全漏洞
CVE-2025-68250Linux kernel 安全漏洞
CVE-2025-68264Linux kernel 安全漏洞

显示前 20 条,共 157 条。 查看全部 &rarr; →

IV. Related Vulnerabilities

V. Comments for CVE-2025-68214

暂无评论


发表评论