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

8.8 · HIGH
Published Apr 24, 2026 linux CWE-125

Overview

CVE-2026-31570 is a high-severity vulnerability affecting linux linux_kernel. It was published on April 24, 2026 and has a CVSS 3.1 base score of 8.8 (HIGH).

This vulnerability has a CVSS 3.1 base score of 8.8, rated HIGH. It requires local or adjacent network access to exploit. No authentication or special privileges are required for exploitation.

Technical Description

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

can: gw: fix OOB heap access in cgw_csum_crc8_rel()

cgw_csum_crc8_rel() correctly computes bounds-safe indices via calc_idx():

int from = calc_idx(crc8->from_idx, cf->len);

int to = calc_idx(crc8->to_idx, cf->len);

int res = calc_idx(crc8->result_idx, cf->len);

if (from < 0 || to < 0 || res < 0)

return;

However, the loop and the result write then use the raw s8 fields directly

instead of the computed variables:

for (i = crc8->from_idx; ...) /* BUG: raw negative index */

cf->data[crc8->result_idx] = ...; /* BUG: raw negative index */

With from_idx = to_idx = result_idx = -64 on a 64-byte CAN FD frame,

calc_idx(-64, 64) = 0 so the guard passes, but the loop iterates with

i = -64, reading cf->data[-64], and the write goes to cf->data[-64].

This write might end up to 56 (7.0-rc) or 40 (<= 6.19) bytes before the

start of the canfd_frame on the heap.

The companion functi

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 >= 5.4.1, < 5.10.253 Affected

Frequently Asked Questions

What is CVE-2026-31570?

CVE-2026-31570 is a high-severity vulnerability affecting linux linux_kernel. It was published on April 24, 2026 and has a CVSS 3.1 base score of 8.8 (HIGH).

How severe is CVE-2026-31570?

This vulnerability has a CVSS 3.1 base score of 8.8, rated HIGH. It requires local or adjacent network access to exploit. No authentication or special privileges are required for exploitation.

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

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

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