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

7.8 · HIGH
Published Jun 25, 2026 linux CWE-787 EPSS 0.17% (6th pctl)

Overview

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

accel/ethosu: fix OOB write in ethosu_gem_cmdstream_copy_and_validate()

The command stream parsing loop increments the index variable a second

time when a 64-bit command word is encountered (bit 14 set), but does

not re-check the loop bound before writing the second word:

for (i = 0; i < size / 4; i++) {

bocmds[i] = cmds[0];

if (cmd & 0x4000) {

i++;

bocmds[i] = cmds[1]; /* unchecked */

}

}

The buffer bocmds is backed by a DMA allocation of exactly size bytes

from drm_gem_dma_create(ddev, size), giving valid indices [0, size/4-1].

When i == size/4 - 1 on entry to an iteration and bit 14 of cmds[0] is

set, bocmds[size/4-1] is written in bounds, i is then incremented to

size/4, and bocmds[size/4] writes four bytes past the end of the

allocation.

Userspace controls both the buffer contents and the size argument via

the ioctl, making this a userspace-triggerabl

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 >= 6.19, < 7.0.13 Affected

Frequently Asked Questions

What is CVE-2026-53173?

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

How severe is CVE-2026-53173?

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

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

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