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

Published Jul 25, 2026 EPSS 0.17% (6th pctl)

Overview

CVE-2026-64504 is a known-severity vulnerability. It was published on July 25, 2026.

Technical Description

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

iio: accel: bmc150: clamp the device-reported FIFO frame count

__bmc150_accel_fifo_flush() copies the number of samples the device

reports in its hardware FIFO into an on-stack buffer

u16 buffer[BMC150_ACCEL_FIFO_LENGTH * 3];

which is sized for at most BMC150_ACCEL_FIFO_LENGTH (32) samples. The

frame count is read from the FIFO_STATUS register and only masked to its

7 valid bits:

count = val & 0x7F;

so it can be 0..127. The only other limit applied to it is the optional

caller-supplied sample budget:

if (samples && count > samples)

count = samples;

which does not constrain count on the flush-all path (samples == 0), and

leaves it well above 32 whenever samples is larger. count samples are

then transferred into buffer[]:

bmc150_accel_fifo_transfer(data, (u8 *)buffer, count);

bmc150_accel_fifo_transfer() reads count * 6 bytes through regmap, so a

malfunctioning, malicious or counterfeit accelerometer (or

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

CVE-2026-64504 is a known-severity vulnerability. It was published on July 25, 2026.

How severe is CVE-2026-64504?

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

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

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