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-74577

Published Aug 15, 2026 EPSS 0.17% (6th pctl)

Overview

CVE-2026-74577 is a known-severity vulnerability. It was published on August 15, 2026.

Technical Description

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

net: mpls: initialize rtm_tos in mpls_getroute()

mpls_getroute() builds the RTM_NEWROUTE reply to an RTM_GETROUTE

request by filling a struct rtmsg allocated from an skb whose data

area is not zeroed (alloc_skb(NLMSG_GOODSIZE, ...)). It sets every

field of the header except rtm_tos:

r = nlmsg_data(nlh);

r->rtm_family = AF_MPLS;

r->rtm_dst_len = 20;

r->rtm_src_len = 0;

r->rtm_table = RT_TABLE_MAIN;

r->rtm_type = RTN_UNICAST;

r->rtm_scope = RT_SCOPE_UNIVERSE;

r->rtm_protocol = rt->rt_protocol;

r->rtm_flags = 0;

struct rtmsg has no padding, so the one uninitialised byte rtm_tos

(offset 3) is copied straight to user space on recvmsg(), leaking a

byte of uninitialised heap memory. This is in contrast to

mpls_dump_route(), which fills the very same header and does set

rtm_tos = 0.

Initialize rtm_tos to 0, matching mpls_dump_route().

Reproduced with KMSAN by adding an MPLS route and issuing a

non-RTM_F_FIB_MAT

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-74577?

CVE-2026-74577 is a known-severity vulnerability. It was published on August 15, 2026.

How severe is CVE-2026-74577?

CVSS score information is not yet available for this vulnerability. Check back as the CVE record is updated by NVD analysts.

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

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-74577?

CyberStrike's AI-powered security agents can automatically detect CVE-2026-74577 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.