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

目标: 1000 元 · 已筹: 1336

100%

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

一分钟漏洞结论

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

Linux kernel是美国Linux基金会的开源操作系统Linux所使用的内核。 Linux kernel存在安全漏洞,该漏洞源于bonding组件中bond_setup_by_slave函数存在类型混淆,可能导致内核崩溃。

CVSS 7.8 · High EPSS 0.16% · P5

影响版本矩阵 12

厂商产品 版本范围状态
Linux Linux 1284cd3a2b740d0118458d2ea470a1e5bc19b187< 5d0fb9806ab6cf2c3cfba0e1b8c701da65e25af8 affected
1284cd3a2b740d0118458d2ea470a1e5bc19b187< 9baf26a91565b7bb2b1d9f99aaf884a2b28c2f6d affected
1284cd3a2b740d0118458d2ea470a1e5bc19b187< 6ac890f1d60ac3707ee8dae15a67d9a833e49956 affected
1284cd3a2b740d0118458d2ea470a1e5bc19b187< 95597d11dc8bddb2b9a051c9232000bfbb5e43ba affected
1284cd3a2b740d0118458d2ea470a1e5bc19b187< 950803f7254721c1c15858fbbfae3deaaeeecb11 affected
2.6.24 affected
< 2.6.24 unaffected
6.6.145≤ 6.6.* unaffected
… +4 条更多
获取后续新漏洞提醒 登录后订阅

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

漏洞信息

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

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

Vulnerability Title
bonding: fix type confusion in bond_setup_by_slave()
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: bonding: fix type confusion in bond_setup_by_slave() kernel BUG at net/core/skbuff.c:2306! Oops: invalid opcode: 0000 [#1] SMP KASAN NOPTI RIP: 0010:pskb_expand_head+0xa08/0xfe0 net/core/skbuff.c:2306 RSP: 0018:ffffc90004aff760 EFLAGS: 00010293 RAX: 0000000000000000 RBX: ffff88807e3c8780 RCX: ffffffff89593e0e RDX: ffff88807b7c4900 RSI: ffffffff89594747 RDI: ffff88807b7c4900 RBP: 0000000000000820 R08: 0000000000000005 R09: 0000000000000000 R10: 00000000961a63e0 R11: 0000000000000000 R12: ffff88807e3c8780 R13: 00000000961a6560 R14: dffffc0000000000 R15: 00000000961a63e0 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 00007fe1a0ed8df0 CR3: 000000002d816000 CR4: 00000000003526f0 Call Trace: <TASK> ipgre_header+0xdd/0x540 net/ipv4/ip_gre.c:900 dev_hard_header include/linux/netdevice.h:3439 [inline] packet_snd net/packet/af_packet.c:3028 [inline] packet_sendmsg+0x3ae5/0x53c0 net/packet/af_packet.c:3108 sock_sendmsg_nosec net/socket.c:727 [inline] __sock_sendmsg net/socket.c:742 [inline] ____sys_sendmsg+0xa54/0xc30 net/socket.c:2592 ___sys_sendmsg+0x190/0x1e0 net/socket.c:2646 __sys_sendmsg+0x170/0x220 net/socket.c:2678 do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline] do_syscall_64+0x106/0xf80 arch/x86/entry/syscall_64.c:94 entry_SYSCALL_64_after_hwframe+0x77/0x7f RIP: 0033:0x7fe1a0e6c1a9 When a non-Ethernet device (e.g. GRE tunnel) is enslaved to a bond, bond_setup_by_slave() directly copies the slave's header_ops to the bond device: bond_dev->header_ops = slave_dev->header_ops; This causes a type confusion when dev_hard_header() is later called on the bond device. Functions like ipgre_header(), ip6gre_header(),all use netdev_priv(dev) to access their device-specific private data. When called with the bond device, netdev_priv() returns the bond's private data (struct bonding) instead of the expected type (e.g. struct ip_tunnel), leading to garbage values being read and kernel crashes. Fix this by introducing bond_header_ops with wrapper functions that delegate to the active slave's header_ops using the slave's own device. This ensures netdev_priv() in the slave's header functions always receives the correct device. The fix is placed in the bonding driver rather than individual device drivers, as the root cause is bond blindly inheriting header_ops from the slave without considering that these callbacks expect a specific netdev_priv() layout. The type confusion can be observed by adding a printk in ipgre_header() and running the following commands: ip link add dummy0 type dummy ip addr add 10.0.0.1/24 dev dummy0 ip link set dummy0 up ip link add gre1 type gre local 10.0.0.1 ip link add bond1 type bond mode active-backup ip link set gre1 master bond1 ip link set gre1 up ip link set bond1 up ip addr add fe80::1/64 dev bond1
来源: 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存在安全漏洞,该漏洞源于bonding组件中bond_setup_by_slave函数存在类型混淆,可能导致内核崩溃。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 1284cd3a2b740d0118458d2ea470a1e5bc19b187 ~ 5d0fb9806ab6cf2c3cfba0e1b8c701da65e25af8 -
Linux Linux 2.6.24 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

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

同批安全公告 · Linux · 2026-05-08 · 共 197 条

CVE-2026-43384 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43379 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43341 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43304 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43378 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43376 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43414 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43402 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43465 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-43383 9.4 CRITICAL Linux kernel 安全漏洞
CVE-2026-43406 9.1 CRITICAL Linux kernel 安全漏洞
CVE-2026-43407 9.1 CRITICAL Linux kernel 安全漏洞
CVE-2026-43334 8.8 HIGH Linux kernel 安全漏洞
CVE-2026-43391 8.8 HIGH Linux kernel 安全漏洞
CVE-2026-43284 8.8 HIGH Linux kernel 安全漏洞
CVE-2026-43322 8.8 HIGH Linux kernel 安全漏洞
CVE-2026-43403 8.8 HIGH Linux kernel 安全漏洞
CVE-2026-43291 8.3 HIGH Linux kernel 安全漏洞
CVE-2026-43452 8.2 HIGH Linux kernel 安全漏洞
CVE-2026-43466 8.2 HIGH Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-43456

暂无评论


发表评论