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

目标: 1000 元 · 已筹: 1336

100%

CVE-2024-26596— Linux kernel 安全漏洞

一分钟漏洞结论

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

Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux Kernel 存在安全漏洞,该漏洞源于 netdev_priv() 方法存在取消引用问题。

AI 预测 7.8 利用难度: 中等 EPSS 0.24% · P16

可能的 ATT&CK 技术 1 AI

T1206

影响版本矩阵 10

厂商产品 版本范围状态
Linux Linux 4c3f80d22b2eca911143ce656fa45c4699ff5bf4< 9e9953f5e4d6d11a9dad56fdee307bb923302809 affected
4c3f80d22b2eca911143ce656fa45c4699ff5bf4< 69a1e2d938dbbfcff0e064269adf60ad26dbb102 affected
4c3f80d22b2eca911143ce656fa45c4699ff5bf4< dbd909c20c11f0d29c0054d41e0d1f668a60e8c8 affected
4c3f80d22b2eca911143ce656fa45c4699ff5bf4< 844f104790bd69c2e4dbb9ee3eba46fde1fcea7b affected
6.1 affected
< 6.1 unaffected
6.1.129≤ 6.1.* unaffected
6.6.55≤ 6.6.* unaffected
… +2 条更多
获取后续新漏洞提醒 登录后订阅

一、 漏洞 CVE-2024-26596 基础信息

漏洞信息

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

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

Vulnerability Title
net: dsa: fix netdev_priv() dereference before check on non-DSA netdevice events
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: net: dsa: fix netdev_priv() dereference before check on non-DSA netdevice events After the blamed commit, we started doing this dereference for every NETDEV_CHANGEUPPER and NETDEV_PRECHANGEUPPER event in the system. static inline struct dsa_port *dsa_user_to_port(const struct net_device *dev) { struct dsa_user_priv *p = netdev_priv(dev); return p->dp; } Which is obviously bogus, because not all net_devices have a netdev_priv() of type struct dsa_user_priv. But struct dsa_user_priv is fairly small, and p->dp means dereferencing 8 bytes starting with offset 16. Most drivers allocate that much private memory anyway, making our access not fault, and we discard the bogus data quickly afterwards, so this wasn't caught. But the dummy interface is somewhat special in that it calls alloc_netdev() with a priv size of 0. So every netdev_priv() dereference is invalid, and we get this when we emit a NETDEV_PRECHANGEUPPER event with a VLAN as its new upper: $ ip link add dummy1 type dummy $ ip link add link dummy1 name dummy1.100 type vlan id 100 [ 43.309174] ================================================================== [ 43.316456] BUG: KASAN: slab-out-of-bounds in dsa_user_prechangeupper+0x30/0xe8 [ 43.323835] Read of size 8 at addr ffff3f86481d2990 by task ip/374 [ 43.330058] [ 43.342436] Call trace: [ 43.366542] dsa_user_prechangeupper+0x30/0xe8 [ 43.371024] dsa_user_netdevice_event+0xb38/0xee8 [ 43.375768] notifier_call_chain+0xa4/0x210 [ 43.379985] raw_notifier_call_chain+0x24/0x38 [ 43.384464] __netdev_upper_dev_link+0x3ec/0x5d8 [ 43.389120] netdev_upper_dev_link+0x70/0xa8 [ 43.393424] register_vlan_dev+0x1bc/0x310 [ 43.397554] vlan_newlink+0x210/0x248 [ 43.401247] rtnl_newlink+0x9fc/0xe30 [ 43.404942] rtnetlink_rcv_msg+0x378/0x580 Avoid the kernel oops by dereferencing after the type check, as customary.
来源: 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 存在安全漏洞,该漏洞源于 netdev_priv() 方法存在取消引用问题。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 4c3f80d22b2eca911143ce656fa45c4699ff5bf4 ~ 9e9953f5e4d6d11a9dad56fdee307bb923302809 -
Linux Linux 6.1 -

二、漏洞 CVE-2024-26596 的公开POC

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

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2024-26596 的情报信息

登录查看更多情报信息。

CVE-2024-26596 补丁与修复 (1)

CVE-2024-26596 其他参考 (2)

同批安全公告 · Linux · 2024-02-23 · 共 19 条

CVE-2024-26594 9.1 CRITICAL Linux kernel 安全漏洞
CVE-2024-26598 8.8 HIGH Linux kernel 安全漏洞
CVE-2024-26597 7.8 HIGH Linux Kernel 安全漏洞
CVE-2023-52461 7.8 HIGH Linux kernel 安全漏洞
CVE-2023-52454 7.5 HIGH Linux kernel 安全漏洞
CVE-2023-52453 7.1 HIGH Linux kernel 安全漏洞
CVE-2023-52459 Linux kernel 安全漏洞
CVE-2024-26593 Linux kernel 安全漏洞
CVE-2023-52455 Linux kernel 安全漏洞
CVE-2023-52456 Linux kernel 安全漏洞
CVE-2023-52458 Linux Kernel 安全漏洞
CVE-2023-52457 Linux kernel 安全漏洞
CVE-2023-52460 Linux kernel 安全漏洞
CVE-2023-52462 Linux kernel 安全漏洞
CVE-2023-52464 Linux kernel 安全漏洞
CVE-2023-52463 Linux kernel 安全漏洞
CVE-2024-26595 Linux kernel 安全漏洞
CVE-2024-26599 Linux kernel 安全漏洞

IV. Related Vulnerabilities

V. Comments for CVE-2024-26596

暂无评论


发表评论