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

Published Jul 25, 2026 EPSS 0.18% (7th pctl)

Overview

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

Technical Description

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

usb: gadget: composite: fix dead empty check in the USB_DT_OTG handler

The OTG branch of composite_setup() falls back to the first

configuration when none is selected:

if (cdev->config)

config = cdev->config;

else

config = list_first_entry(&cdev->configs,

struct usb_configuration, list);

if (!config)

goto done;

...

memcpy(req->buf, config->descriptors[0], value);

list_first_entry() never returns NULL. On an empty list it returns

container_of() of the list head. So the "if (!config)" check is dead.

When cdev->configs is empty, config points at the head inside struct

usb_composite_dev. config->descriptors[0] reads whatever sits at that

offset. The memcpy copies up to w_length bytes of it into the response

buffer.

cdev->configs can be empty in two cases. One is a teardown race on

gadget unbind with a control transfer in flight. The other is a driver

that sets is_otg before it adds a config. A repro

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

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

How severe is CVE-2026-64347?

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

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

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