Skip to main content

WireGuard CVE-2026-52945

| EUVDEUVD-2026-38813 HIGH
2026-06-24 Linux GHSA-rh26-99wm-wg2w
7.5
CVSS 3.1 · Vendor: Linux
Share

Severity by source

Vendor (Linux) PRIMARY
7.5 HIGH
AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
vuln.today AI
5.9 MEDIUM

Network-reachable load triggers it (AV:N, PR:N) but it is a rare non-deterministic race needing sustained multi-CPU heavy traffic (AC:H); impact is a permanent per-peer stall (A:H) with no C/I effect.

3.1 AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
4.0 AV:N/AC:H/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N
SUSE
5.9 MEDIUM
AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
Red Hat
7.0 MEDIUM
qualitative

Primary rating from Vendor (Linux).

CVSS VectorVendor: Linux

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
None
Availability
High

Lifecycle Timeline

5
Analysis Generated
Jun 28, 2026 - 08:30 vuln.today
CVSS changed
Jun 28, 2026 - 08:22 NVD
7.5 (HIGH)
Patch available
Jun 24, 2026 - 18:02 EUVD
CVE Published
Jun 24, 2026 - 16:26 cve.org
HIGH 7.5
CVE Published
Jun 24, 2026 - 16:26 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

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.

  1. 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.

  1. 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.

  1. 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.

  1. The latter updates the state to PACKET_STATE_CRYPTED on success

and calls napi_schedule on the per peer->napi instance.

  1. 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.)

  1. 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.

  1. 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.

  1. While this is the case, the other CPUs in the meantime finish

decryption and call into napi_schedule.

  1. 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---

AnalysisAI

Denial of service in the Linux kernel's WireGuard module causes the receive/decryption path to permanently stall for an individual peer under heavy network load. Affected stable trees (notably 6.12.34 through 6.12.73, with the same defect originating in 5.15/6.1 where threaded NAPI became default) can have inbound traffic to a specific WireGuard peer halt completely once the per-peer rx_queue fills its 1024-packet backlog and wg_packet_rx_poll is never rescheduled. The condition was reported by multiple production Cilium/Kubernetes operators; there is no public exploit identified at time of analysis and EPSS is very low (0.10%, 1st percentile).

Technical ContextAI

The flaw lives in the in-kernel WireGuard driver (cpe:2.3:a:linux:linux), specifically its receive packet pipeline. Commit db9ae3b6b43c ('wireguard: device: enable threaded NAPI') switched WireGuard to threaded NAPI by default beginning in the 5.15 era. With threaded NAPI, per-CPU decrypt workers (wg_packet_decrypt_worker) can complete out of global order relative to the in-order per-peer MPSC rx_queue. When the first in-order skb is still PACKET_STATE_UNCRYPTED while later packets have already been marked PACKET_STATE_CRYPTED and triggered napi_schedule, wg_packet_rx_poll exits without progress; subsequent completions fail to reschedule the poll, the queue saturates at MAX_QUEUED_PACKETS (1024), and wg_prev_queue_enqueue then drops all further packets. The root cause is a concurrency/ordering race (effectively a CWE-362-class race condition / lost-wakeup), though the input lists CWE as N/A. The committed fix is simply to revert the threaded-NAPI default.

RemediationAI

Apply the vendor stable-kernel update that contains the revert: upgrade to Linux 6.12.74 or later in the 6.12 series (fixing commit e94b369ff82f9bc84f090f271bd78f41c9f6ab2f), or the equivalent patched build for your 5.15/6.1 stable branch once your distribution ships it; this is Vendor-released patch: Linux 6.12.74 (and corresponding stable backports). If you cannot rebuild or reboot immediately, the targeted compensating control is to disable threaded NAPI for the WireGuard interface at runtime - the revert simply restores the non-threaded default, so writing '0' to /sys/class/net/<wg-iface>/threaded (or setting it via your network manager) reproduces the safe behavior without a kernel upgrade; the trade-off is a modest loss of the throughput/latency benefit threaded NAPI was meant to provide, which is generally acceptable given the stall risk. As an interim operational mitigation, monitor for the failure signature (peer rx_queue saturating at 1024 and wg_packet_rx_poll ceasing for a peer, e.g. via bpftrace on wg_prev_queue_enqueue) and bounce the affected interface/peer to clear a stuck state. See the commit at https://git.kernel.org/stable/c/e94b369ff82f9bc84f090f271bd78f41c9f6ab2f and the advisory at https://nvd.nist.gov/vuln/detail/CVE-2026-52945.

CVE-2025-1974 CRITICAL POC
9.8 Mar 25

A critical vulnerability in Kubernetes ingress-nginx controller allows unauthenticated attackers with pod network access

CVE-2026-45321 CRITICAL POC
9.6 May 12

Credential-harvesting malware compromised 84 versions of 42 TanStack npm packages on 2026-05-11 via chained GitHub Actio

CVE-2025-1098 HIGH POC
8.8 Mar 25

Kubernetes ingress-nginx contains a configuration injection vulnerability via the mirror-target and mirror-host Ingress

CVE-2025-24514 HIGH POC
8.8 Mar 25

A security issue was discovered in ingress-nginx https://github.com/kubernetes/ingress-nginx where the `auth-url` Ingres

CVE-2025-1097 HIGH POC
8.8 Mar 25

A security issue was discovered in ingress-nginx https://github.com/kubernetes/ingress-nginx where the `auth-tls-match-c

CVE-2020-8554 MEDIUM POC
6.3 Jan 21

Kubernetes API server in all versions allow an attacker who is able to create a ClusterIP service and set the spec.exter

CVE-2023-3676 HIGH POC
8.8 Oct 31

A security issue was discovered in Kubernetes where a user that can create pods on Windows nodes may be able to escalate

CVE-2025-55190 CRITICAL POC
9.9 Sep 04

Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. Rated critical severity (CVSS 9.9), this vulne

CVE-2026-34976 CRITICAL POC
10.0 Apr 02

Unauthenticated remote attackers can trigger complete database overwrites, server-side file reads, and SSRF attacks agai

CVE-2018-18843 CRITICAL POC
10.0 Dec 04

The Kubernetes integration in GitLab Enterprise Edition 11.x before 11.2.8, 11.3.x before 11.3.9, and 11.4.x before 11.4

CVE-2026-54680 CRITICAL POC
9.9 Jul 29

Fluentd configuration injection in the kube-logging Logging operator before 6.6.0 allows a namespace-scoped user who can

CVE-2026-22039 CRITICAL POC
9.9 Jan 27

Kyverno Kubernetes policy engine prior to 1.x has a privilege escalation vulnerability (CVSS 9.9) allowing policy bypass

Vendor StatusVendor

SUSE

Severity: Moderate
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise Desktop 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Affected
SUSE Linux Enterprise High Performance Computing 15 SP7 Affected

Share

CVE-2026-52945 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy