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

目标: 1000 元 · 已筹: 1336

100%

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

一分钟漏洞结论

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

Linux kernel是美国Linux基金会开源的一个操作系统内核。 Linux kernel存在安全漏洞,该漏洞源于异步TLS握手回调期间svc_xprt引用计数管理不当,存在竞争条件,可能导致释放后重用和内核内存破坏。

CVSS 9.8 · Critical EPSS 0.63% · P47

可能的 ATT&CK 技术 1 AI

T1206

影响版本矩阵 12

厂商产品 版本范围状态
Linux Linux b3cbf98e2fdf3cb147a95161560cd25987284330< f3b55945dd99f29d83e1965d0141040a35262346 affected
b3cbf98e2fdf3cb147a95161560cd25987284330< 2d4f97d13fff91e0bc539216be88b884b544d49f affected
b3cbf98e2fdf3cb147a95161560cd25987284330< 3f9ee75a97a769be258784c22b89657acb5ed9bd affected
b3cbf98e2fdf3cb147a95161560cd25987284330< 083e9c2ec7e8bb13b79c9fd7b337abdd758ecc5f affected
b3cbf98e2fdf3cb147a95161560cd25987284330< 4f988f3a2808fb659f3880c282041ff067acad78 affected
6.4 affected
< 6.4 unaffected
6.6.145≤ 6.6.* unaffected
… +4 条更多
获取后续新漏洞提醒 登录后订阅

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

漏洞信息

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

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

Vulnerability Title
sunrpc: pin svc_xprt across the asynchronous TLS handshake callback
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: sunrpc: pin svc_xprt across the asynchronous TLS handshake callback svc_tcp_handshake() stores the raw svc_xprt pointer in tls_handshake_args.ta_data and submits the request through tls_server_hello_x509(). The handshake core takes only sock_hold(req->hr_sk); nothing references the embedding struct svc_sock that svc_tcp_handshake_done() reaches via container_of(). Two close races leave the in-flight callback writing through a freed svc_sock. svc_sock_free() calls tls_handshake_cancel() and discards its return value: a false return means handshake_complete() has already set HANDSHAKE_F_REQ_COMPLETED but hp_done() may not have finished, yet svc_sock_free() proceeds to kfree(svsk). The cancel-loser fall-through inside svc_tcp_handshake() itself produces the same window: when wait_for_completion_interruptible_timeout() returns <= 0 (timeout or signal) and tls_handshake_cancel() returns false, the function does not drain, returns, and svc_handle_xprt() calls svc_xprt_received(), which clears XPT_BUSY and can drop the last reference. A concurrent close then runs svc_sock_free() while svc_tcp_handshake_done() is still updating xpt_flags and walking svsk->sk_handshake_done. The corruption surfaces as set_bit/clear_bit RMW into the freed xpt_flags slab slot and as complete_all() walking and writing the freed wait_queue_head_t list embedded in sk_handshake_done -- a slab-corruption primitive, not a benign read. The path is reachable on any TLS-enabled NFS server whenever a connection close overlaps the tlshd downcall delivery window; the interruptible wait means signal delivery suffices, not just SVC_HANDSHAKE_TO expiry. Take svc_xprt_get(xprt) immediately before tls_server_hello_x509() so the in-flight callback owns its own reference. Release it on the two edges where the callback is guaranteed not to fire -- submission failure from tls_server_hello_x509() and a successful tls_handshake_cancel() -- and at the tail of svc_tcp_handshake_done() after complete_all(). [cel: rewrote commit message to describe the actual change]
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:N/AC:L/PR:N/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 kernel存在安全漏洞,该漏洞源于异步TLS握手回调期间svc_xprt引用计数管理不当,存在竞争条件,可能导致释放后重用和内核内存破坏。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux b3cbf98e2fdf3cb147a95161560cd25987284330 ~ f3b55945dd99f29d83e1965d0141040a35262346 -
Linux Linux 6.4 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

CVE-2026-72222 补丁与修复 (5)

同批安全公告 · Linux · 2026-08-15 · 共 845 条

CVE-2026-72407 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72408 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74279 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72421 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74280 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74309 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74475 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72493 9.9 CRITICAL Linux kernel 安全漏洞
CVE-2026-72436 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74394 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72417 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72069 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72422 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72065 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72064 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72429 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72251 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72234 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72451 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72041 9.8 CRITICAL Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-72222

暂无评论


发表评论