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

7.8 · HIGH
Published Jul 19, 2026 linux CWE-125 EPSS 0.14% (3th pctl)

Overview

CVE-2026-64114 is a high-severity vulnerability affecting linux linux_kernel. It was published on July 19, 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:

ipv4: raw: reject IP_HDRINCL packets with ihl < 5

raw_send_hdrinc() validates that the caller-supplied IPv4 header

fits within the message length:

iphlen = iph->ihl * 4;

err = -EINVAL;

if (iphlen > length)

goto error_free;

if (iphlen >= sizeof(*iph)) {

/* fix up saddr, tot_len, id, csum, transport_header */

}

It does not, however, reject ihl < 5. For such a packet the

"if (iphlen >= sizeof(*iph))" branch is skipped, leaving the

crafted iphdr untouched, but the packet is still handed to

__ip_local_out() and onward. Downstream consumers that read

iph->ihl assume a sane value: net/ipv4/ah4.c:ah_output() in

particular subtracts sizeof(struct iphdr) from top_iph->ihl * 4

and passes the (signed-int-negative, then cast to size_t)

result to memcpy(), producing an OOB access of length close to

SIZE_MAX and a host kernel panic.

An IPv4 header with ihl < 5 is malformed by definition (RF

Remediation

Check the references section for vendor advisories and patches from linux. Update linux_kernel to the latest patched version. 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.

Affected Products

Vendor Product Versions Status
linux linux_kernel >= 2.6.12.1, < 5.10.258 Affected

Frequently Asked Questions

What is CVE-2026-64114?

CVE-2026-64114 is a high-severity vulnerability affecting linux linux_kernel. It was published on July 19, 2026 and has a CVSS 3.1 base score of 7.8 (HIGH).

How severe is CVE-2026-64114?

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

Check the references section for vendor advisories and patches from linux. Update linux_kernel to the latest patched version. 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-64114?

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