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

目标: 1000 元 · 已筹: 1336

100%

CVE-2026-52947— Linux kernel 安全漏洞

一分钟漏洞结论

影响对象
Linux Linux
利用判断
尚无明确在野利用证据,仍需结合暴露面评估
建议动作
优先检查厂商安全公告和参考链接中的修复版本;无法立即升级时,限制受影响服务暴露并加强监测。

Linux kernel是美国Linux基金会开源的操作系统Linux所使用的内核。 Linux kernel 4.7版本存在安全漏洞,该漏洞源于qrtr_port_remove函数中的引用计数饱和和潜在释放后重用问题,可能导致并发RCU读取器获取已经释放的套接字指针,导致释放后重用。以下版本受到影响:4.7版本。

CVSS 7.8 · High EPSS 0.14% · P3

影响版本矩阵 18

厂商产品 版本范围状态
Linux Linux bdabad3e363d825ddf9679dd431cca0b2c30f881< 2aa4c12723fe432e623462a3be42a197a128722b affected
bdabad3e363d825ddf9679dd431cca0b2c30f881< 03bfa95e452e2b6ccd76a332060ae4feaf5ad84d affected
bdabad3e363d825ddf9679dd431cca0b2c30f881< 474293d90880622fde9d2430fb0165767090f7b3 affected
bdabad3e363d825ddf9679dd431cca0b2c30f881< 2047c2aa0963bb2872fd722300a15bcb441a4c00 affected
bdabad3e363d825ddf9679dd431cca0b2c30f881< 7de2d447072be3b1a76793f034432338fc9c494b affected
bdabad3e363d825ddf9679dd431cca0b2c30f881< ab269990ed58143a92a263be1bee626d82ac03da affected
bdabad3e363d825ddf9679dd431cca0b2c30f881< 3b20ec8f31e8a6a6782243f473b0abd3463621df affected
bdabad3e363d825ddf9679dd431cca0b2c30f881< a2171131ecda1ed61a594a1eb715e75fdad0fef5 affected
… +10 条更多
获取后续新漏洞提醒 登录后订阅

一、 漏洞 CVE-2026-52947 基础信息

漏洞信息

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

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

Vulnerability Title
net: qrtr: fix refcount saturation and potential UAF in qrtr_port_remove
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: net: qrtr: fix refcount saturation and potential UAF in qrtr_port_remove In qrtr_port_remove(), the socket reference count is decremented via __sock_put() before the port is removed from the qrtr_ports XArray and before the RCU grace period elapses. This breaks the fundamental RCU update paradigm. It exposes a race window where a concurrent RCU reader (such as qrtr_reset_ports() or qrtr_port_lookup()) can obtain a pointer to the socket from the XArray, and attempt to call sock_hold() on a socket whose reference count has already dropped to zero. This exact race condition was hit during syzkaller fuzzing, leading to the following refcount saturation warning and a potential Use-After-Free: refcount_t: saturated; leaking memory. WARNING: CPU: 3 PID: 1273 at lib/refcount.c:22 refcount_warn_saturate+0xae/0x1d0 Modules linked in: qrtr(+) bochs drm_shmem_helper ... Call Trace: <TASK> qrtr_reset_ports net/qrtr/af_qrtr.c:768 [inline] [qrtr] __qrtr_bind.isra.0+0x48b/0x570 net/qrtr/af_qrtr.c:805 [qrtr] qrtr_bind+0x17d/0x210 net/qrtr/af_qrtr.c:901 [qrtr] kernel_bind+0xe4/0x120 net/socket.c:3592 qrtr_ns_init+0x1a6/0x380 net/qrtr/ns.c:715 [qrtr] qrtr_proto_init+0x3b/0xff0 net/qrtr/af_qrtr.c:169 [qrtr] do_one_initcall+0xf5/0x5e0 init/main.c:1283 ... </TASK> Fix this by deferring the reference count decrement until after the xa_erase() and the synchronize_rcu() complete. (Note: The v1 of this patch incorrectly replaced __sock_put() with sock_put(). As Simon Horman pointed out, the callers of qrtr_port_remove() still hold a reference to the socket, so freeing the socket memory here would lead to a subsequent UAF in the caller. Thus, the __sock_put() is kept, but only repositioned to close the RCU race.)
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
来源: 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 4.7版本存在安全漏洞,该漏洞源于qrtr_port_remove函数中的引用计数饱和和潜在释放后重用问题,可能导致并发RCU读取器获取已经释放的套接字指针,导致释放后重用。以下版本受到影响:4.7版本。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux bdabad3e363d825ddf9679dd431cca0b2c30f881 ~ 2aa4c12723fe432e623462a3be42a197a128722b -
Linux Linux 4.7 -

二、漏洞 CVE-2026-52947 的公开POC

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

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2026-52947 的情报信息

登录查看更多情报信息。

CVE-2026-52947 补丁与修复 (8)

同批安全公告 · Linux · 2026-06-24 · 共 219 条

CVE-2026-53088 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53046 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53049 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52955 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53045 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52982 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52986 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52989 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52993 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52931 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53002 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52924 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53055 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53006 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52914 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53086 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53010 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52999 9.1 CRITICAL Linux kernel 安全漏洞
CVE-2026-52958 9.1 CRITICAL Linux kernel 安全漏洞
CVE-2026-53043 9.1 CRITICAL Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-52947

暂无评论


发表评论