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

目标: 1000 元 · 已筹: 1336

100%

CVE-2025-37959— Linux kernel 安全漏洞

CVSS 9.4 · Critical EPSS 0.30% · P23

可能的 ATT&CK 技术 1AI

T1564.008 · Email Hiding Rules

影响版本矩阵 12

厂商产品版本范围状态
LinuxLinux9aa1206e8f48222f35a0c809f33b2f4aaa1e2661< de1067cc8cf0e8c11ae20cbe5c467aef19d04dedaffected
9aa1206e8f48222f35a0c809f33b2f4aaa1e2661< 355b0526336c0bf2bf7feaca033568ede524f763affected
9aa1206e8f48222f35a0c809f33b2f4aaa1e2661< b37e54259cab4f78b53953d6f6268b85f07bef3eaffected
9aa1206e8f48222f35a0c809f33b2f4aaa1e2661< 9e15ef33ba39fb6d9d1f51445957f16983a9437aaffected
9aa1206e8f48222f35a0c809f33b2f4aaa1e2661< c4327229948879814229b46aa26a750718888503affected
5.10affected
< 5.10unaffected
6.1.139≤ 6.1.*unaffected
… +4 条更多
获取后续新漏洞提醒登录后订阅

一、 漏洞 CVE-2025-37959 基础信息

漏洞信息

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

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

Vulnerability Title
bpf: Scrub packet on bpf_redirect_peer
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: bpf: Scrub packet on bpf_redirect_peer When bpf_redirect_peer is used to redirect packets to a device in another network namespace, the skb isn't scrubbed. That can lead skb information from one namespace to be "misused" in another namespace. As one example, this is causing Cilium to drop traffic when using bpf_redirect_peer to redirect packets that just went through IPsec decryption to a container namespace. The following pwru trace shows (1) the packet path from the host's XFRM layer to the container's XFRM layer where it's dropped and (2) the number of active skb extensions at each function. NETNS MARK IFACE TUPLE FUNC 4026533547 d00 eth0 10.244.3.124:35473->10.244.2.158:53 xfrm_rcv_cb .active_extensions = (__u8)2, 4026533547 d00 eth0 10.244.3.124:35473->10.244.2.158:53 xfrm4_rcv_cb .active_extensions = (__u8)2, 4026533547 d00 eth0 10.244.3.124:35473->10.244.2.158:53 gro_cells_receive .active_extensions = (__u8)2, [...] 4026533547 0 eth0 10.244.3.124:35473->10.244.2.158:53 skb_do_redirect .active_extensions = (__u8)2, 4026534999 0 eth0 10.244.3.124:35473->10.244.2.158:53 ip_rcv .active_extensions = (__u8)2, 4026534999 0 eth0 10.244.3.124:35473->10.244.2.158:53 ip_rcv_core .active_extensions = (__u8)2, [...] 4026534999 0 eth0 10.244.3.124:35473->10.244.2.158:53 udp_queue_rcv_one_skb .active_extensions = (__u8)2, 4026534999 0 eth0 10.244.3.124:35473->10.244.2.158:53 __xfrm_policy_check .active_extensions = (__u8)2, 4026534999 0 eth0 10.244.3.124:35473->10.244.2.158:53 __xfrm_decode_session .active_extensions = (__u8)2, 4026534999 0 eth0 10.244.3.124:35473->10.244.2.158:53 security_xfrm_decode_session .active_extensions = (__u8)2, 4026534999 0 eth0 10.244.3.124:35473->10.244.2.158:53 kfree_skb_reason(SKB_DROP_REASON_XFRM_POLICY) .active_extensions = (__u8)2, In this case, there are no XFRM policies in the container's network namespace so the drop is unexpected. When we decrypt the IPsec packet, the XFRM state used for decryption is set in the skb extensions. This information is preserved across the netns switch. When we reach the XFRM policy check in the container's netns, __xfrm_policy_check drops the packet with LINUX_MIB_XFRMINNOPOLS because a (container-side) XFRM policy can't be found that matches the (host-side) XFRM state used for decryption. This patch fixes this by scrubbing the packet when using bpf_redirect_peer, as is done on typical netns switches via veth devices except skb->mark and skb->tstamp are not zeroed.
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/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存在安全漏洞,该漏洞源于未清理跨命名空间重定向的数据包,可能导致信息泄露。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商产品影响版本CPE订阅
LinuxLinux 9aa1206e8f48222f35a0c809f33b2f4aaa1e2661 ~ de1067cc8cf0e8c11ae20cbe5c467aef19d04ded -
LinuxLinux 5.10 -

二、漏洞 CVE-2025-37959 的公开POC

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

未找到公开 POC。

登录以生成 AI POC

三、漏洞 CVE-2025-37959 的情报信息

登录查看更多情报信息。

同批安全公告 · Linux · 2025-05-20 · 共 95 条

CVE-2025-378949.8 CRITICALLinux kernel 安全漏洞
CVE-2025-379249.8 CRITICALLinux kernel 安全漏洞
CVE-2025-379359.8 CRITICALLinux kernel 安全漏洞
CVE-2025-379188.8 HIGHLinux kernel 安全漏洞
CVE-2025-378998.8 HIGHLinux kernel 安全漏洞
CVE-2025-379438.8 HIGHLinux kernel 安全漏洞
CVE-2025-379268.8 HIGHLinux kernel 安全漏洞
CVE-2025-379448.8 HIGHLinux kernel 安全漏洞
CVE-2025-379478.8 HIGHLinux kernel 安全漏洞
CVE-2025-379528.8 HIGHLinux kernel 安全漏洞
CVE-2025-379568.8 HIGHLinux kernel 安全漏洞
CVE-2025-379578.8 HIGHLinux kernel 安全漏洞
CVE-2025-379368.7 HIGHLinux kernel 安全漏洞
CVE-2025-379738.1 HIGHLinux kernel 安全漏洞
CVE-2025-379237.8 HIGHLinux kernel 安全漏洞
CVE-2025-379797.8 HIGHLinux kernel 安全漏洞
CVE-2025-379207.8 HIGHLinux kernel 安全漏洞
CVE-2025-379217.8 HIGHLinux kernel 安全漏洞
CVE-2025-379647.8 HIGHLinux kernel 安全漏洞
CVE-2025-379017.8 HIGHLinux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2025-37959

暂无评论


发表评论