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

目标: 1000 元 · 已筹: 1336

100%

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

一分钟漏洞结论

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

Linux kernel是美国Linux基金会开源的一个操作系统内核。 Linux kernel 6.18版本存在安全漏洞,该漏洞源于bpffs中inode释放未经过RCU延迟,导致释放后重用,可能允许攻击者利用并发unlinkat触发释放后重用,导致信息泄露或系统崩溃。

CVSS 7.8 · High EPSS 0.12% · P3

可能的 ATT&CK 技术 1 AI

T1206

影响版本矩阵 22

厂商产品 版本范围状态
Linux Linux e28616ca3d67e745ecb2f10eba4a626e1fc9a203< ea1c243c39e32b7fc1c2edfe32081ff7e30a877c affected
743a620c661994c7f0938e6dd32fb0883fb1e0ea< 5fecb71c10c28aef276ba49c718dc961745fdcf0 affected
b6e9645be9eb93f7aff3ca887f8edb6f1d63358f< c70d0f9114c3cc156f6029a400c4eb7e6f7c82b2 affected
ee04cff9ed4d6bb25802f5cecfcd0750500410f3< 53649846e0437d1d9b7cb993cfe54c367addf7ae affected
4f375ade6aa9f37fd72d7a78682f639772089eed< 61f19729728243c82476dee31315143ed3275e7f affected
4f375ade6aa9f37fd72d7a78682f639772089eed< 0497ff765746d9b2d17445c8f7cc737b36c0152a affected
4f375ade6aa9f37fd72d7a78682f639772089eed< b93c55b4932dd7e32dca8cf34a3443cc87a02906 affected
de2d2baecc84cc7fca52eec2b9b55d89c93e3565 affected
… +14 条更多
获取后续新漏洞提醒 登录后订阅

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

漏洞信息

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

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

Vulnerability Title
bpf: fix UAF by restoring RCU-delayed inode freeing in bpffs
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: bpf: fix UAF by restoring RCU-delayed inode freeing in bpffs commit 4f375ade6aa9 ("bpf: Avoid RCU context warning when unpinning htab with internal structs") moved inode cleanup from ->free_inode() into ->destroy_inode() to avoid sleeping in RCU context when calling bpf_any_put(). However this removed the RCU delay on freeing the inode itself and the cached symlink body (i_link), both of which can be accessed by RCU pathwalk (pick_link, may_lookup etc.). This causes a use-after-free when a concurrent unlinkat() drops the last inode reference and destroy_inode() frees the inode immediately, while another task is still walking the path in RCU mode and reads inode->i_opflags (offset +2) inside current_time() -> is_mgtime(). KASAN reports: BUG: KASAN: slab-use-after-free in is_mgtime include/linux/fs.h:2313 Read of size 2 at addr ffff8880407e4282 (offset +2 = i_opflags) The rules (per Al Viro): ->destroy_inode() called immediately, can sleep, use for blocking cleanup e.g. bpf_any_put() ->free_inode() called after RCU grace period, use for freeing inode and anything RCU-accessible e.g. i_link Fix: split the two concerns properly: - keep bpf_any_put() in bpf_destroy_inode() since it is blocking and needs to run promptly - introduce bpf_free_inode() to handle kfree(i_link) and free_inode_nonrcu() with proper RCU delay, preventing the UAF
来源: 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 kernel 6.18版本存在安全漏洞,该漏洞源于bpffs中inode释放未经过RCU延迟,导致释放后重用,可能允许攻击者利用并发unlinkat触发释放后重用,导致信息泄露或系统崩溃。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux e28616ca3d67e745ecb2f10eba4a626e1fc9a203 ~ ea1c243c39e32b7fc1c2edfe32081ff7e30a877c -
Linux Linux 6.18 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

CVE-2026-74363 补丁与修复 (6)

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

CVE-2026-74280 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74279 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72421 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74475 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72408 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72407 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-74309 10.0 CRITICAL Linux kernel 安全漏洞
CVE-2026-72493 9.9 CRITICAL Linux kernel 安全漏洞
CVE-2026-72041 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74436 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72211 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72209 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72208 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72299 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74434 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74433 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72473 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72472 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-74545 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-72322 9.8 CRITICAL Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-74363

暂无评论


发表评论