CVE-2026-63896
Last modified
CVE-2026-63896 is a vulnerability of currently unknown severity. In the Linux kernel, the following vulnerability has been resolved: usb: gadget: composite: fix integer underflow in WebUSB GET_URL handling The WebUSB GET_URL handler in composite_setup() narrows landing_page_length to fit the host-supplied wLength using landing_page_length = w_length - WEBUSB_URL_DESCRIPTOR_HEADER_LENGTH + landing_page_offset; If wLength is smaller than WEBUSB_URL_DESCRIPTOR_HEADER_LENGTH the unsigned subtraction wraps, and the subsequent memcpy(url_descriptor->URL, cdev->landing_page + landing_page_offset, landing_page_length - landing_page_offset); ends up copying close to UINT_MAX bytes from cdev->landing_page into cdev->req->buf. KASAN reports a slab-out-of-bounds in composite_setup on the kmalloc-2k gadget_info allocation, and FORTIFY_SOURCE traps the memcpy as a 4294967293-byte field-spanning write into url_descriptor->URL (size 252). A USB host can reach this from a single SETUP packet against any gadget that has webusb/use=1 and a landingPage configured. Handle the small-wLength case before the math: when the host requested fewer bytes than the URL descriptor header, only the header is meaningful and no URL bytes need to be copied. EPSS estimates a 0.20% chance of exploitation in the next 30 days.
Description
In the Linux kernel, the following vulnerability has been resolved: usb: gadget: composite: fix integer underflow in WebUSB GET_URL handling The WebUSB GET_URL handler in composite_setup() narrows landing_page_length to fit the host-supplied wLength using landing_page_length = w_length - WEBUSB_URL_DESCRIPTOR_HEADER_LENGTH + landing_page_offset; If wLength is smaller than WEBUSB_URL_DESCRIPTOR_HEADER_LENGTH the unsigned subtraction wraps, and the subsequent memcpy(url_descriptor->URL, cdev->landing_page + landing_page_offset, landing_page_length - landing_page_offset); ends up copying close to UINT_MAX bytes from cdev->landing_page into cdev->req->buf. KASAN reports a slab-out-of-bounds in composite_setup on the kmalloc-2k gadget_info allocation, and FORTIFY_SOURCE traps the memcpy as a 4294967293-byte field-spanning write into url_descriptor->URL (size 252). A USB host can reach this from a single SETUP packet against any gadget that has webusb/use=1 and a landingPage configured. Handle the small-wLength case before the math: when the host requested fewer bytes than the URL descriptor header, only the header is meaningful and no URL bytes need to be copied. Setting landing_page_length to landing_page_offset makes the existing memcpy a no-op and leaves the descriptor returned to the host unchanged for all larger wLength values.
Metrics
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| Linux | Linux | >= 93c473948c588978cd55d9a3adad8b3e8057aa21, < 046870ff6b6f7b743c953c061043a9b30700d491; >= 93c473948c588978cd55d9a3adad8b3e8057aa21, < f5869dfaa89854dcf34121036294d42d6c7acb8f; >= 93c473948c588978cd55d9a3adad8b3e8057aa21, < f8f5a8f48c7cae3fac85e04b593bd47939f9725f; >= 93c473948c588978cd55d9a3adad8b3e8057aa21, < a20f0ccf45708af6e063c7234c215d364b00de25; >= 93c473948c588978cd55d9a3adad8b3e8057aa21, < 6c5dbc104dadd79fc2923497c20bae759a18758c |
| Linux | Linux | 6.3 |
References
Timeline
- Published
- Last Modified
- Status
- Awaiting Analysis
Frequently Asked Questions
What is CVE-2026-63896?
How severe is CVE-2026-63896?
How do I fix CVE-2026-63896?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-63890In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63891In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63892In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63893In the Linux kernel, the following vulnerability has been re…8.1
- CVE-2026-63894In the Linux kernel, the following vulnerability has been re…7.8
- CVE-2026-63895In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63897In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63898In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63899In the Linux kernel, the following vulnerability has been re…
- CVE-2026-6390A flaw was found in GNU nano's multi-buffer error message ha…6.8
- CVE-2026-63900In the Linux kernel, the following vulnerability has been re…
- CVE-2026-63901In the Linux kernel, the following vulnerability has been re…
Are you affected by CVE-2026-63896?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
