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

目标: 1000 元 · 已筹: 1336

100%

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

AI 预测 5.5 利用难度: 中等 EPSS 0.18% · P8

影响版本矩阵 16

厂商产品版本范围状态
LinuxLinuxb8fe128dad8f97cc9af7c55a264d1fc5ab677195< 64da320252e43456cc9ec3055ff567f168467b37affected
b8fe128dad8f97cc9af7c55a264d1fc5ab677195< 02fbea0864fd4a863671f5d418129258d7159f68affected
b8fe128dad8f97cc9af7c55a264d1fc5ab677195< a77f8434954cb1e9c42c3854e40855fdcf5ab235affected
b8fe128dad8f97cc9af7c55a264d1fc5ab677195< 3373f263bb647fcc3b5237cfaef757633b9ee25eaffected
b8fe128dad8f97cc9af7c55a264d1fc5ab677195< 45379303124487db3a81219af7565d41f498167faffected
b8fe128dad8f97cc9af7c55a264d1fc5ab677195< 3a01b2614e84361aa222f67bc628593987e5cdb2affected
b8fe128dad8f97cc9af7c55a264d1fc5ab677195< 2eead19334516c8e9927c11b448fbe512b1f18a1affected
5.7affected
… +8 条更多
获取后续新漏洞提醒登录后订阅

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

漏洞信息

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

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

Vulnerability Title
arch_topology: Fix incorrect error check in topology_parse_cpu_capacity()
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: arch_topology: Fix incorrect error check in topology_parse_cpu_capacity() Fix incorrect use of PTR_ERR_OR_ZERO() in topology_parse_cpu_capacity() which causes the code to proceed with NULL clock pointers. The current logic uses !PTR_ERR_OR_ZERO(cpu_clk) which evaluates to true for both valid pointers and NULL, leading to potential NULL pointer dereference in clk_get_rate(). Per include/linux/err.h documentation, PTR_ERR_OR_ZERO(ptr) returns: "The error code within @ptr if it is an error pointer; 0 otherwise." This means PTR_ERR_OR_ZERO() returns 0 for both valid pointers AND NULL pointers. Therefore !PTR_ERR_OR_ZERO(cpu_clk) evaluates to true (proceed) when cpu_clk is either valid or NULL, causing clk_get_rate(NULL) to be called when of_clk_get() returns NULL. Replace with !IS_ERR_OR_NULL(cpu_clk) which only proceeds for valid pointers, preventing potential NULL pointer dereference in clk_get_rate().
来源: CVE Program / CVE List V5
CVSS Information
N/A
来源: CVE Program / CVE List V5
Vulnerability Type
N/A
来源: CVE Program / CVE List V5
Vulnerability Title
Linux kernel 安全漏洞
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Description
Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于未正确处理topology_parse_cpu_capacity返回值,可能导致空指针取消引用。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商产品影响版本CPE订阅
LinuxLinux b8fe128dad8f97cc9af7c55a264d1fc5ab677195 ~ 64da320252e43456cc9ec3055ff567f168467b37 -
LinuxLinux 5.7 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

CVE-2025-40346 其他参考 (7)

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

CVE-2025-403509.8 CRITICALLinux kernel 安全漏洞
CVE-2025-682639.8 CRITICALLinux kernel 安全漏洞
CVE-2025-683019.8 CRITICALLinux kernel 安全漏洞
CVE-2025-681929.8 CRITICALLinux kernel 安全漏洞
CVE-2025-682859.8 CRITICALLinux kernel 安全漏洞
CVE-2025-682849.8 CRITICALLinux kernel 安全漏洞
CVE-2025-683159.8 CRITICALLinux kernel 安全漏洞
CVE-2025-682268.8 HIGHLinux kernel 安全漏洞
CVE-2025-683048.8 HIGHLinux kernel 安全漏洞
CVE-2025-682568.8 HIGHLinux kernel 安全漏洞
CVE-2025-403628.8 HIGHLinux kernel 安全漏洞
CVE-2025-682558.8 HIGHLinux kernel 安全漏洞
CVE-2025-683148.8 HIGHLinux kernel 安全漏洞
CVE-2025-682508.2 HIGHLinux kernel 安全漏洞
CVE-2025-682657.8 HIGHLinux kernel 安全漏洞
CVE-2025-682127.8 HIGHLinux kernel 安全漏洞
CVE-2025-681797.8 HIGHLinux kernel 安全漏洞
CVE-2025-681817.8 HIGHLinux kernel 安全漏洞
CVE-2025-681837.8 HIGHLinux kernel 安全漏洞
CVE-2025-682947.8 HIGHLinux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2025-40346

暂无评论


发表评论