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

Published Jul 19, 2026 EPSS 0.26% (18th pctl)

Overview

CVE-2026-63895 is a known-severity vulnerability. It was published on July 19, 2026.

Technical Description

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

usb: gadget: f_fs: copy only received bytes on short ep0 read

ffs_ep0_read() allocates its control-OUT data buffer with

kmalloc() (not kzalloc) at the Length value from the Setup

packet, then copies that full len to userspace regardless of

how many bytes were actually received:

data = kmalloc(len, GFP_KERNEL);

...

ret = __ffs_ep0_queue_wait(ffs, data, len);

if ((ret > 0) && (copy_to_user(buf, data, len)))

ret = -EFAULT;

__ffs_ep0_queue_wait() returns req->actual, which on a short

control OUT transfer is strictly less than len. The

copy_to_user() call still copies len bytes, so on a short OUT

the last (len - ret) bytes of the kmalloc() buffer --

uninitialised slab residue -- are delivered to the FunctionFS

daemon.

Short ep0 OUT completions are specified USB control-transfer

behavior and are produced by in-tree UDCs:

* dwc2 continues on req->actual < req->length for ep0 DATA OUT

(

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

CVE-2026-63895 is a known-severity vulnerability. It was published on July 19, 2026.

How severe is CVE-2026-63895?

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

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

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