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

7.1 · HIGH
Published Jul 25, 2026 EPSS 0.12% (2th pctl)

Overview

CVE-2026-64436 is a high-severity vulnerability. It was published on July 25, 2026 and has a CVSS 3.1 base score of 7.1 (HIGH).

This vulnerability has a CVSS 3.1 base score of 7.1, 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:

net: af_key: initialize alg_key_len for IPComp states

pfkey_msg2xfrm_state() handles the IPComp (SADB_X_SATYPE_IPCOMP) case by

allocating x->calg and copying only the algorithm name:

x->calg = kmalloc_obj(*x->calg);

if (!x->calg) {

err = -ENOMEM;

goto out;

}

strcpy(x->calg->alg_name, a->name);

x->props.calgo = sa->sadb_sa_encrypt;

Unlike the authentication (x->aalg) and encryption (x->ealg) branches of

the same function, the compression branch never initializes

calg->alg_key_len. IPComp carries no key and the allocation only

reserves sizeof(struct xfrm_algo) (i.e. no room for a key), so the field

is left containing uninitialized slab data.

calg->alg_key_len is later used as a length by xfrm_algo_clone() when an

IPComp state is cloned during XFRM_MSG_MIGRATE:

xfrm_state_migrate()

xfrm_state_clone_and_setup()

x->calg = xfrm_algo_clone(orig->calg);

kmemdup(orig, xfrm_alg_len(orig));

where

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

CVE-2026-64436 is a high-severity vulnerability. It was published on July 25, 2026 and has a CVSS 3.1 base score of 7.1 (HIGH).

How severe is CVE-2026-64436?

This vulnerability has a CVSS 3.1 base score of 7.1, 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-64436?

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

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