Skip to main content

Over 150 LLM Providers · Over 5,300 Models The most extensible AI-powered pentesting platform. Open source. Star on GitHub

CVE-2026-74609

7.8 · HIGH
Published Aug 22, 2026 EPSS 0.13% (3th pctl)

Overview

CVE-2026-74609 is a high-severity vulnerability. It was published on August 22, 2026 and has a CVSS 3.1 base score of 7.8 (HIGH).

This vulnerability has a CVSS 3.1 base score of 7.8, rated HIGH. It requires local or adjacent network access to exploit. Some level of privileges is required for exploitation.

Technical Description

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

tipc: read le->link under the node lock in tipc_node_link_down()

tipc_node_link_down() caches the link pointer before taking n->lock:

struct tipc_link *l = le->link; /* unlocked */

if (!l)

return;

tipc_node_write_lock(n);

if (!tipc_link_is_establishing(l)) { /* deref l */

...

tipc_link_reset(l); /* write into l */

if (delete) {

kfree(l);

le->link = NULL;

The delete=true caller frees that very object under n->lock, so the lock

does not protect the cached pointer against it:

- CPU A, delete=false: tipc_rcv() on TIPC_LINK_DOWN_EVT, or the link

supervision timer via tipc_node_timeout(), reads l unlocked and then

dereferences it under n->lock;

- CPU B, delete=true: netlink TIPC_NL_BEARER_DISABLE -> bearer_disable()

-> tipc_node_delete_links() -> tipc_node_link_down(n, bearer_id, true)

-> kfree(l).

The link is freed with plain kfree(), not kfree_rcu(), and for UDP bearers

disable_media()

Remediation

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

Frequently Asked Questions

What is CVE-2026-74609?

CVE-2026-74609 is a high-severity vulnerability. It was published on August 22, 2026 and has a CVSS 3.1 base score of 7.8 (HIGH).

How severe is CVE-2026-74609?

This vulnerability has a CVSS 3.1 base score of 7.8, rated HIGH. It requires local or adjacent network access to exploit. Some level of privileges is required for exploitation.

How do I fix or remediate CVE-2026-74609?

Check the references section for vendor advisories, patches, and mitigation guidance. If immediate patching is not possible, review the CVSS vector to understand the attack surface and apply compensating controls such as network segmentation or access restrictions.

How can CyberStrike help with CVE-2026-74609?

CyberStrike's AI-powered security agents can automatically detect CVE-2026-74609 across your infrastructure using autonomous pentesting, DAST scanning, and HackBrowser. The platform continuously monitors for known vulnerabilities and provides actionable remediation guidance prioritized by real-world exploitability.