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

目标: 1000 元 · 已筹: 1336

100%

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

一分钟漏洞结论

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

Linux kernel是美国Linux基金会开源的一个操作系统内核。 Linux kernel存在安全漏洞,该漏洞源于PR-OUT TransportID解析时未正确限制缓冲区边界,可能导致越界读取,造成内核崩溃。

CVSS 9.8 · Critical EPSS 0.73% · P51

影响版本矩阵 16

厂商产品 版本范围状态
Linux Linux c66ac9db8d4ad9994a02b3e933ea2ccc643e1fe5< 842248047ef28dbf3b3f7f49a0ec315054d4dab8 affected
c66ac9db8d4ad9994a02b3e933ea2ccc643e1fe5< 03fbc7de8d5e85fc8420e57e8304c855efd453ab affected
c66ac9db8d4ad9994a02b3e933ea2ccc643e1fe5< 6ca5de8782e67573a61a6736b6dc0ffe58dcdf59 affected
c66ac9db8d4ad9994a02b3e933ea2ccc643e1fe5< 9298078a8f7d8181a04614a34ab655ccdf038204 affected
c66ac9db8d4ad9994a02b3e933ea2ccc643e1fe5< 004ccd2d3b4ac36a300e05e01df152e5c02a5a82 affected
c66ac9db8d4ad9994a02b3e933ea2ccc643e1fe5< 555a89846ed888d7401b3f7200934c0fbedcbb46 affected
c66ac9db8d4ad9994a02b3e933ea2ccc643e1fe5< d04a179085c262c9ed577d0a4cbc6482ff1fd9a3 affected
2.6.38 affected
… +8 条更多
获取后续新漏洞提醒 登录后订阅

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

漏洞信息

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

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

Vulnerability Title
scsi: target: Bound PR-OUT TransportID parsing to the received buffer
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: scsi: target: Bound PR-OUT TransportID parsing to the received buffer core_scsi3_decode_spec_i_port() and core_scsi3_emulate_register_and_move() hand the raw PERSISTENT RESERVE OUT parameter buffer to target_parse_pr_out_transport_id() without telling it how many bytes are valid. For an iSCSI TransportID (FORMAT CODE 01b), iscsi_parse_pr_out_transport_id() locates the ",i,0x" ISID separator with an unbounded strstr() (and on the error path prints the name with a further unbounded "%s"). An initiator can submit a TransportID whose iSCSI name contains neither a ",i,0x" substring nor a NUL terminator, filling the parameter list to its end, so the scan runs off the end of the buffer. When the parameter list spans more than one page the buffer is a multi-page vmap (transport_kmap_data_sg()), so the over-read walks into the trailing vmalloc guard page and oopses (KASAN: vmalloc-out-of-bounds in strstr). It is reachable by any fabric that delivers a PR OUT to a device exported through an iSCSI TPG, including a guest via vhost-scsi. Pass the number of received bytes down to the parser and validate the iSCSI TransportID's own self-described length (ADDITIONAL LENGTH + 4) once, up front: reject it if it is below the spc4r17 minimum or larger than the received buffer, then bound the separator search, the ISID walk and the name copy by that length. This is the length check the callers already perform after the parse (core_scsi3_decode_spec_i_port() compares tid_len against tpdl, core_scsi3_emulate_register_and_move() validates it against data_length), moved ahead of the scan. Also drop the unbounded "%s" of the unterminated name. Add per-format explicit name-length checks before copying into i_str, rather than silently truncating with min_t: for FORMAT CODE 00b reject if the descriptor body (tid_len - 4 bytes) cannot fit in i_str[TRANSPORT_IQN_LEN]; for FORMAT CODE 01b reject if the name portion (from &buf[4] up to the separator) cannot fit. Both checks make the bounds intent explicit at each format branch. While here, also reject a FORMAT CODE 01b TransportID whose ",i,0x" separator sits at the very end of the descriptor: that leaves an empty ISID and points the returned port nexus pointer at buf + tid_len, one past the descriptor, which the registration code (__core_scsi3_locate_pr_reg(), __core_scsi3_alloc_registration()) then dereferences as the ISID string -- the same over-read of the parameter buffer for a malformed descriptor.
来源: 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存在安全漏洞,该漏洞源于PR-OUT TransportID解析时未正确限制缓冲区边界,可能导致越界读取,造成内核崩溃。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux c66ac9db8d4ad9994a02b3e933ea2ccc643e1fe5 ~ 88c67c3de914e19172e1d878a7625c5b06c20ec5 -
Linux Linux 2.6.38 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

CVE-2026-72084 补丁与修复 (7)

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

CVE-2026-74475 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-72408 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72407 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72493 9.9 CRITICAL Linux kernel 安全漏洞
CVE-2026-74434 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72065 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72064 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72317 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74427 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72137 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72429 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74428 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72139 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72436 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72046 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72451 9.8 CRITICAL Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-72084

暂无评论


发表评论