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

tipc: reject inverted service ranges from peer bindings

tipc_update_nametbl() inserts a binding advertised by a peer node using
the lower and upper service-range bounds taken directly from the wire,
without checking that lower <= upper. The local bind path validates the
ordering (tipc_uaddr_valid()), but the name-distribution path does not.

A binding with lower > upper is inserted at the far end of the
service-range rbtree (keyed on lower) where no lookup or withdrawal can
ever match it (service_range_foreach_match() requires sr->lower <= end).
The publication, its service_range node and the augmented rbtree entry
are then leaked for the lifetime of the namespace, and there is no
per-peer cap equivalent to TIPC_MAX_PUBL on locally created bindings.

Reject inverted ranges in the network path as well. A peer node can
otherwise leak unbounded binding-table memory by sending PUBLICATION
items with lower > upper.
Published: 2026-08-15
Score: 7.5 High
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

A peer in the TIPC network can send a PUBLICATION item with the service range bounds inverted (lower greater than upper). The Linux kernel’s tipc_update_nametbl function inserts this binding into the name table without checking bound order, so the entry is placed at the far end of the red‑black tree where it can never be matched by a lookup or withdrawal. Because the binding remains in memory for the lifetime of the namespace and there is no per‑peer publication limit for remote nodes, an attacker can cause unbounded memory growth and leak sensitive data. The flaw does not require local code execution; it is fully exploitable over the network by sending crafted TIPC messages.

Affected Systems

All Linux kernel releases that contain the unpatched TIPC implementation are affected. The flaw was addressed in the kernel source after the commits referenced in the advisory; any kernel build that predates those commits inherits the vulnerability. The affected vendor is the Linux kernel project.

Risk and Exploitability

The CVSS score is 7.5, indicating high severity, but the EPSS score of <1% indicates a low exploitation probability. The lack of input validation combined with a remote, network‑gated attack path and the absence of any per‑peer cap means the vulnerability can be exploited by any untrusted peer, although the low EPSS suggests a limited threat in typical environments. The vulnerability is not yet listed in the CISA KEV catalog. An attacker can trigger the weakness by sending a single crafted PUBLICATION packet through a TIPC channel, leading to memory exhaustion or leakage. The risk is moderate for systems that use TIPC for inter‑node communication and cannot fully trust all peers.

Generated by OpenCVE AI on August 22, 2026 at 03:45 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Apply the kernel patch that adds validation to tipc_update_nametbl and rejects inverted service ranges on both local and network paths; the fix is available in the commits cited in the advisory.
  • If a kernel upgrade is not immediately possible, block TIPC PUBLICATION items from untrusted peers at the network level, for example by dropping the TIPC protocol port or filtering messages containing the malformed range pattern.
  • As a temporary workaround, disable TIPC communication with untrusted nodes or use firewall rules to limit traffic to known, trusted peers, thus preventing the injection of invalid service ranges.

Generated by OpenCVE AI on August 22, 2026 at 03:45 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Sat, 22 Aug 2026 02:30:00 +0000

Type Values Removed Values Added
Weaknesses CWE-200

Thu, 20 Aug 2026 00:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-772
References
Metrics threat_severity

None

threat_severity

Moderate


Mon, 17 Aug 2026 15:15:00 +0000

Type Values Removed Values Added
Weaknesses CWE-200

Mon, 17 Aug 2026 13:45:00 +0000

Type Values Removed Values Added
Weaknesses CWE-20
CWE-399
CWE-682

Mon, 17 Aug 2026 06:00:00 +0000

Type Values Removed Values Added
Metrics cvssV3_1

{'score': 7.5, 'vector': 'CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H'}


Sat, 15 Aug 2026 13:00:00 +0000

Type Values Removed Values Added
Weaknesses CWE-20
CWE-399
CWE-682

Sat, 15 Aug 2026 06:15:00 +0000

Type Values Removed Values Added
Description In the Linux kernel, the following vulnerability has been resolved: tipc: reject inverted service ranges from peer bindings tipc_update_nametbl() inserts a binding advertised by a peer node using the lower and upper service-range bounds taken directly from the wire, without checking that lower <= upper. The local bind path validates the ordering (tipc_uaddr_valid()), but the name-distribution path does not. A binding with lower > upper is inserted at the far end of the service-range rbtree (keyed on lower) where no lookup or withdrawal can ever match it (service_range_foreach_match() requires sr->lower <= end). The publication, its service_range node and the augmented rbtree entry are then leaked for the lifetime of the namespace, and there is no per-peer cap equivalent to TIPC_MAX_PUBL on locally created bindings. Reject inverted ranges in the network path as well. A peer node can otherwise leak unbounded binding-table memory by sending PUBLICATION items with lower > upper.
Title tipc: reject inverted service ranges from peer bindings
First Time appeared Linux
Linux linux Kernel
CPEs cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*
Vendors & Products Linux
Linux linux Kernel
References

Subscriptions

Linux Linux Kernel
cve-icon MITRE

Status: PUBLISHED

Assigner: Linux

Published:

Updated: 2026-08-17T05:45:22.291Z

Reserved: 2026-08-15T05:44:03.880Z

Link: CVE-2026-74281

cve-icon Vulnrichment

No data.

cve-icon NVD

Status : Received

Published: 2026-08-15T06:22:27.547

Modified: 2026-08-17T06:19:21.863

Link: CVE-2026-74281

cve-icon Redhat

Severity : Moderate

Publid Date: 2026-08-15T00:00:00Z

Links: CVE-2026-74281 - Bugzilla

cve-icon OpenCVE Enrichment

Updated: 2026-08-22T04:00:12Z

Weaknesses
  • CWE-772

    Missing Release of Resource after Effective Lifetime