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

Published Aug 5, 2026 EPSS 0.16% (6th pctl)

Overview

CVE-2026-64573 is a known-severity vulnerability. It was published on August 5, 2026.

Technical Description

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

Bluetooth: qca: fix NVM tag length underflow in TLV parser

In the TLV_TYPE_NVM branch of qca_tlv_check_data() the tag loop bound is

"while (idx < length - sizeof(struct tlv_type_nvm))". "length" is a signed

int from the firmware TLV header and sizeof(struct tlv_type_nvm) is a

size_t (12), so "length" is converted to size_t and any firmware-supplied

"length" < 12 makes the subtraction wrap to a huge value. The loop body

then reads a 12-byte struct tlv_type_nvm past the end of the short

vmalloc'd firmware buffer (and the EDL_TAG_ID_* handlers can write past it).

Rewrite the bound as "idx + sizeof(struct tlv_type_nvm) <= length"; both

operands are non-negative, so it no longer underflows and a "length" too

small for one record correctly skips the loop.

BUG: KASAN: vmalloc-out-of-bounds in qca_download_firmware.isra.0 (drivers/bluetooth/btqca.c:421)

Read of size 2 at addr ffffc900000e5004 by task kworker/u9:0/52

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

CVE-2026-64573 is a known-severity vulnerability. It was published on August 5, 2026.

How severe is CVE-2026-64573?

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

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

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