Skip to main content

Linux Kernel CVE-2026-72418

| EUVDEUVD-2026-59317 HIGH
2026-08-15 Linux GHSA-prxp-6xjx-9qx5
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

AC:H reflects that exploitation requires both active connlimit rules (non-default) and a TIME_WAIT reuse event; pure availability impact with no confidentiality or integrity 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
HIGH
qualitative
Red Hat
5.5 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
Aug 17, 2026 - 09:16 vuln.today
CVSS changed
Aug 17, 2026 - 06:22 NVD
7.5 (HIGH)
Patch available
Aug 15, 2026 - 07:20 EUVD
CVE Published
Aug 15, 2026 - 05:56 cve.org
HIGH 7.5
CVE Published
Aug 15, 2026 - 05:56 cve.org
UNKNOWN (no severity yet)

DescriptionCVE.org

In the Linux kernel, the following vulnerability has been resolved:

netfilter: nf_conncount: prevent connlimit drops for early confirmed ct

Commit 69894e5b4c5e ("netfilter: nft_connlimit: update the count if add was skipped") introduced a regression where packets for valid connections are dropped when using connlimit for soft-limiting scenarios.

The issue occurs when a new connection reuses a socket currently in the TIME_WAIT state. In this scenario, the connection tracking entry is evaluated as already confirmed. Previously, __nf_conncount_add() assumed that if a connection was confirmed and did not originate from the loopback interface, it should skip the addition and return -EEXIST.

Skipping the addition triggers a garbage collection run that cleans up the TIME_WAIT connection. Consequently, the active connection count drops to 0, which xt_connlimit mishandles, leading to the false rejection of the perfectly valid new connection.

Fix this by replacing the interface check with protocol-agnostic state checks. We now skip the tree insertion and preserve the lockless garbage collection optimization only if the connection is IPS_ASSURED. This allows early-confirmed setup packets (such as reused TIME_WAIT sockets or locally generated SYN-ACKs) to be properly evaluated and counted without falsely dropping. The goto check_connections path is maintained to ensure these setup packets are deduplicated correctly.

This has been tested with slowhttptest and HTTP server configured locally to ensure we are not breaking soft-limiting scenarios for local or external connections. In addition, it was tested with a OVS zone limit too.

AnalysisAI

Netfilter connection-count logic in the Linux kernel falsely drops legitimate TCP connections on systems using xt_connlimit or nft_connlimit in soft-limiting mode, across multiple stable branches from 5.10.248 through 6.18.39. The regression, introduced by commit 69894e5b4c5e, causes the active connection count to drop to zero when a new connection reuses a TIME_WAIT socket, after which xt_connlimit misinterprets the zeroed count and rejects valid sessions. No public exploit has been identified at time of analysis and the vulnerability is not listed in CISA KEV, but the condition can be triggered by ordinary connection-cycling traffic without authentication.

Technical ContextAI

The vulnerability resides in the Linux kernel's netfilter subsystem, specifically in net/netfilter/nf_conncount.c and its __nf_conncount_add() function, which maintains per-source-address connection counts for the xt_connlimit (iptables) and nft_connlimit (nftables) match modules. When a new TCP connection reuses a socket previously in the TIME_WAIT state, the conntrack subsystem already holds a confirmed tracking entry for that tuple. The regression path - introduced by commit 69894e5b4c5e - caused __nf_conncount_add() to skip reinsertion for any confirmed connection not originating from the loopback interface and to trigger lockless garbage collection instead. That GC pass removes the stale TIME_WAIT entry, reducing the tracked count to zero. xt_connlimit then treats the next matching packet as if no connection existed at all, triggering a false rule drop. The fix replaces the loopback interface check with a protocol-agnostic IPS_ASSURED state check, so only fully established connections bypass reinsertion. No CWE is formally assigned; the root cause is a state-machine logic error analogous to CWE-670 (Always-Incorrect Control Flow Implementation). The CPE is cpe:2.3:a:linux:linux:*:*:*:*:*:*:*:* across the affected stable branches.

RemediationAI

Upgrade to the appropriate patched stable kernel: 5.10.261, 5.15.212, 6.1.178, 6.6.145, 6.12.97, or 6.18.40 depending on the branch in use; mainline is patched at 7.1.5 and 7.2-rc1. Individual stable-branch fix commits are available at https://git.kernel.org/stable/c/000ac6830b56499d6b65fd91486ce6689eb02be4, https://git.kernel.org/stable/c/cbe2d14a7c5b1fc71821fbfee5c4963917411e92, https://git.kernel.org/stable/c/abef7f817217fcb62c11821d6b895063eadb2828, and the other references from cveorg. As an immediate workaround, temporarily removing or disabling xt_connlimit and nft_connlimit rules from the iptables or nftables ruleset eliminates the trigger condition entirely at the cost of losing per-source connection-rate enforcement - acceptable only if alternative rate-limiting (e.g., tc qdisc, application-layer limits) is in place. Narrowing connlimit rules to match only ESTABLISHED (IPS_ASSURED) state connections reduces but does not fully eliminate exposure. Distribution vendors including RHEL, Debian, Ubuntu, and SUSE are expected to backport these commits to their packaged kernels; consult distribution-specific security advisories for timing and package versions.

Vendor StatusVendor

SUSE

Severity: Important
Product Status
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise Desktop 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 15 SP7 Not-Affected
SUSE Linux Enterprise High Availability Extension 16.0 Not-Affected

Share

CVE-2026-72418 vulnerability details – vuln.today

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