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

目标: 1000 元 · 已筹: 1336

100%

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

一分钟漏洞结论

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

Linux kernel是美国Linux基金会开源的操作系统Linux所使用的内核。 Linux kernel 6.12.34版本至6.12.74之前版本存在安全漏洞,该漏洞源于WireGuard设备启用线程化NAPI导致解密侧在高网络负载下完全停止工作,可能造成拒绝服务。

CVSS 7.5 · High EPSS 0.40% · P33

可能的 ATT&CK 技术 1 AI

T1498 · Network Denial of Service

影响版本矩阵 10

厂商产品 版本范围状态
Linux Linux 18e65229a328304a7ef59899a30fd34ad73ed56b< cfdb22762f903d95c36ab91e9fe6167f22fa9f6d affected
fb978675ccfd4a93549e49624127d8332cc61cbf< 42bc3f45425b607a5ca7b7aaaab661b54407c8f8 affected
8c9e9cd398777fd60ba202211da1110614cb5bc5< 168ee1549fa24fff2ab924a2ca7b1d85f30e062d affected
933466fc50a8e4eb167acbd0d8ec96a078462e9c< e94b369ff82f9bc84f090f271bd78f41c9f6ab2f affected
aba544ff9ec522e120b1b3d8b32efa4e6d16d4d7 affected
6.15.3< 6.16 affected
5.15.186< 5.15.201 affected
6.1.142< 6.1.164 affected
… +2 条更多
获取后续新漏洞提醒 登录后订阅

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

漏洞信息

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

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

Vulnerability Title
Revert "wireguard: device: enable threaded NAPI"
来源: CVE Program / CVE List V5
Vulnerability Description
In the Linux kernel, the following vulnerability has been resolved: Revert "wireguard: device: enable threaded NAPI" This reverts commit 933466fc50a8e4eb167acbd0d8ec96a078462e9c which is commit db9ae3b6b43c79b1ba87eea849fd65efa05b4b2e upstream. We have had three independent production user reports in combination with Cilium utilizing WireGuard as encryption underneath that k8s Pod E/W traffic to certain peer nodes fully stalled. The situation appears as follows: - Occurs very rarely but at random times under heavy networking load. - Once the issue triggers the decryption side stops working completely for that WireGuard peer, other peers keep working fine. The stall happens also for newly initiated connections towards that particular WireGuard peer. - Only the decryption side is affected, never the encryption side. - Once it triggers, it never recovers and remains in this state, the CPU/mem on that node looks normal, no leak, busy loop or crash. - bpftrace on the affected system shows that wg_prev_queue_enqueue fails, thus the MAX_QUEUED_PACKETS (1024 skbs!) for the peer's rx_queue is reached. - Also, bpftrace shows that wg_packet_rx_poll for that peer is never called again after reaching this state for that peer. For other peers wg_packet_rx_poll does get called normally. - Commit db9ae3b ("wireguard: device: enable threaded NAPI") switched WireGuard to threaded NAPI by default. The default has not been changed for triggering the issue, neither did CPU hotplugging occur (i.e. 5bd8de2 ("wireguard: queueing: always return valid online CPU in wg_cpumask_choose_online()")). - The issue has been observed with stable kernels of v5.15 as well as v6.1. It was reported to us that v5.10 stable is working fine, and no report on v6.6 stable either (somewhat related discussion in [0] though). - In the WireGuard driver the only material difference between v5.10 stable and v5.15 stable is the switch to threaded NAPI by default. [0] https://lore.kernel.org/netdev/CA+wXwBTT74RErDGAnj98PqS=wvdh8eM1pi4q6tTdExtjnokKqA@mail.gmail.com/ Breakdown of the problem: 1) skbs arriving for decryption are enqueued to the peer->rx_queue in wg_packet_consume_data via wg_queue_enqueue_per_device_and_peer. 2) The latter only moves the skb into the MPSC peer queue if it does not surpass MAX_QUEUED_PACKETS (1024) which is kept track in an atomic counter via wg_prev_queue_enqueue. 3) In case enqueueing was successful, the skb is also queued up in the device queue, round-robin picks a next online CPU, and schedules the decryption worker. 4) The wg_packet_decrypt_worker, once scheduled, picks these up from the queue, decrypts the packets and once done calls into wg_queue_enqueue_per_peer_rx. 5) The latter updates the state to PACKET_STATE_CRYPTED on success and calls napi_schedule on the per peer->napi instance. 6) NAPI then polls via wg_packet_rx_poll. wg_prev_queue_peek checks on the peer->rx_queue. It will wg_prev_queue_dequeue if the queue->peeked skb was not cached yet, or just return the latter otherwise. (wg_prev_queue_drop_peeked later clears the cache.) 7) From an ordering perspective, the peer->rx_queue has skbs in order while the device queue with the per-CPU worker threads from a global ordering PoV can finish the decryption and signal the skb PACKET_STATE_CRYPTED out of order. 8) A situation can be observed that the first packet coming in will be stuck waiting for the decryption worker to be scheduled for a longer time when the system is under pressure. 9) While this is the case, the other CPUs in the meantime finish decryption and call into napi_schedule. 10) Now in wg_packet_rx_poll it picks up the first in-order skb from the peer->rx_queue and sees that its state is still PACKET_STATE_UNCRYPTED. The NAPI poll routine then exits e ---truncated---
来源: CVE Program / CVE List V5
CVSS Information
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/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 6.12.34版本至6.12.74之前版本存在安全漏洞,该漏洞源于WireGuard设备启用线程化NAPI导致解密侧在高网络负载下完全停止工作,可能造成拒绝服务。
来源: 中国国家信息安全漏洞库 CNNVD
CVSS Information
N/A
来源: 中国国家信息安全漏洞库 CNNVD
Vulnerability Type
N/A
来源: 中国国家信息安全漏洞库 CNNVD

受影响产品

厂商 产品 影响版本 CPE 订阅
Linux Linux 18e65229a328304a7ef59899a30fd34ad73ed56b ~ cfdb22762f903d95c36ab91e9fe6167f22fa9f6d -
Linux Linux 5.15.186 ~ 5.15.201 -

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

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

未找到公开 POC。

登录以生成 AI POC

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

登录查看更多情报信息。

CVE-2026-52945 补丁与修复 (3)

同批安全公告 · Linux · 2026-06-24 · 共 219 条

CVE-2026-53049 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52993 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52989 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52986 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52982 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53002 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53006 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53045 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53086 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53046 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52955 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53010 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53088 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52914 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-53055 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52924 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52931 9.8 CRITICAL Linux kernel 安全漏洞
CVE-2026-52999 9.1 CRITICAL Linux kernel 安全漏洞
CVE-2026-53043 9.1 CRITICAL Linux kernel 安全漏洞
CVE-2026-52958 9.1 CRITICAL Linux kernel 安全漏洞

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

IV. Related Vulnerabilities

V. Comments for CVE-2026-52945

暂无评论


发表评论