Lucene search
+L

8564 matches found

CVE
CVE
added 3 days ago6 views

CVE-2026-63928

The CVE-2026-63928 entry concerns the Linux kernel USB serial omninet driver. The issue is a memory corruption risk when handling a small endpoint: bulk-out buffers must be at least as large as the hardcoded transfer size to prevent user‑controlled slab corruption if a malicious device reports a ...

5.6AI score0.0021EPSS
Exploits0References8
EUVD
EUVD
added 3 days ago5 views

EUVD-2026-45679

In the Linux kernel, the following vulnerability has been resolved: usb: musb: omap2430: Fix use-after-free in omap2430probe In omap2430probe, ofnodeputnp is called prematurely before the last access to np, leading to a use-after-free if the node's reference count drops to zero. Move the ofnodepu...

5.4AI score0.00177EPSS
Exploits0References6
Cvelist
Cvelist
added 3 days ago27 views

CVE-2026-63904 usb: usbtmc: check URB actual_length for interrupt-IN notifications

In the Linux kernel, the following vulnerability has been resolved: usb: usbtmc: check URB actuallength for interrupt-IN notifications USBTMC devices can use an optional interrupt endpoint for notification messages. These typically contain two-byte headers indicating the payload format, but the...

0.0021EPSS
Exploits0References8
OSV
OSV
added 3 days ago5 views

CVE-2026-63904 usb: usbtmc: check URB actual_length for interrupt-IN notifications

In the Linux kernel, the following vulnerability has been resolved: usb: usbtmc: check URB actuallength for interrupt-IN notifications USBTMC devices can use an optional interrupt endpoint for notification messages. These typically contain two-byte headers indicating the payload format, but the...

5.4AI score0.0021EPSS
Exploits0References11
OSV
OSV
added 3 days ago5 views

CVE-2026-63903 USB: serial: belkin_sa: validate interrupt status length

In the Linux kernel, the following vulnerability has been resolved: USB: serial: belkinsa: validate interrupt status length The Belkin interrupt callback treats interrupt data as a four-byte status report and reads LSR/MSR fields at offsets 2 and 3. The interrupt-in buffer length is derived from...

5.6AI score0.0021EPSS
Exploits0References11
Cvelist
Cvelist
added 3 days ago27 views

CVE-2026-63902 USB: serial: cypress_m8: validate interrupt packet headers

In the Linux kernel, the following vulnerability has been resolved: USB: serial: cypressm8: validate interrupt packet headers cypressreadintcallback parses the interrupt-in buffer according to the selected Cypress packet format. Format 1 has a two-byte status/count header and format 2 has a...

0.0021EPSS
Exploits0References8
CVE
CVE
added 3 days ago8 views

CVE-2026-63902

The CVE-2026-63902 issue affects the Linux kernel USB-serial Cypress M8 driver. cypress_read_int_callback() parses the interrupt-in buffer for two Cypress packet formats (format 1: two-byte status/count header; format 2: one-byte combined header). The interrupt buffer is sized from the endpoint w...

5.6AI score0.0021EPSS
Exploits0References8
EUVD
EUVD
added 3 days ago6 views

EUVD-2026-45673

In the Linux kernel, the following vulnerability has been resolved: USB: serial: keyspan: fix missing indat transfer sanity check Add the missing sanity check on the size of usa49wg indat transfers to avoid parsing stale or uninitialised slab data...

5.4AI score0.0021EPSS
Exploits0References8
EUVD
EUVD
added 3 days ago5 views

EUVD-2026-45672

In the Linux kernel, the following vulnerability has been resolved: USB: serial: mxuport: fix memory corruption with small endpoint Make sure that the bulk-out endpoint max packet size is at least eight bytes to avoid user-controlled slab corruption should a malicious device report a smaller size...

5.5AI score0.0021EPSS
Exploits0References8
CVE
CVE
added 3 days ago6 views

CVE-2026-63900

CVE-2026-63900 concerns the Linux kernel USB serial driver for Keyspan devices (usa49wg). The vulnerability was a missing sanity check on the size of indat transfers, which could allow parsing of stale or uninitialised slab data. The issue has been addressed by adding the missing sanity check to ...

5.4AI score0.0021EPSS
Exploits0References8
OSV
OSV
added 3 days ago5 views

CVE-2026-63898 USB: serial: mct_u232: fix memory corruption with small endpoint

In the Linux kernel, the following vulnerability has been resolved: USB: serial: mctu232: fix memory corruption with small endpoint The driver overrides the maximum transfer size for a specific device which only accepts 16 byte packets for its 32 byte bulk-out endpoint. Make sure to never increas...

5.5AI score0.0021EPSS
Exploits0References11
OSV
OSV
added 3 days ago5 views

CVE-2026-63897 USB: serial: mct_u232: fix missing interrupt-in transfer sanity check

In the Linux kernel, the following vulnerability has been resolved: USB: serial: mctu232: fix missing interrupt-in transfer sanity check Add the missing sanity check on the size of interrupt-in transfers to avoid parsing stale or uninitialised slab data and leaking it to user space...

5.3AI score0.0021EPSS
Exploits0References11
CVE
CVE
added 3 days ago12 views

CVE-2026-63897

The CVE-2026-63897 entry concerns the Linux kernel USB serial driver mct_u232. A missing sanity check on the size of interrupt-in transfers could allow parsing of stale or uninitialised slab data, potentially leaking kernel data to user space. The vulnerability is addressed by kernel fixes that a...

5.4AI score0.0021EPSS
Exploits0References8
EUVD
EUVD
added 3 days ago8 views

EUVD-2026-45670

In the Linux kernel, the following vulnerability has been resolved: USB: serial: mctu232: fix missing interrupt-in transfer sanity check Add the missing sanity check on the size of interrupt-in transfers to avoid parsing stale or uninitialised slab data and leaking it to user space...

5.3AI score0.0021EPSS
Exploits0References8
CVE
CVE
added 3 days ago8 views

CVE-2026-63895

Summary: CVE-2026-63895 affects the Linux kernel's FunctionFS (f_fs) gadget driver. The bug occurs in ffs_ep0_read(), where a control-OUT request’s data buffer is allocated with kmalloc(len) and then fully copied to userspace via copy_to_user(buf, data, len) even when only ret bytes were actually...

5.6AI score0.00244EPSS
Exploits0References7
Cvelist
Cvelist
added 3 days ago26 views

CVE-2026-63895 usb: gadget: f_fs: copy only received bytes on short ep0 read

In the Linux kernel, the following vulnerability has been resolved: usb: gadget: ffs: copy only received bytes on short ep0 read ffsep0read 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 o...

0.00244EPSS
Exploits0References7
OSV
OSV
added 3 days ago4 views

CVE-2026-63895 usb: gadget: f_fs: copy only received bytes on short ep0 read

In the Linux kernel, the following vulnerability has been resolved: usb: gadget: ffs: copy only received bytes on short ep0 read ffsep0read 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 o...

5.6AI score0.00244EPSS
Exploits0References10
Cvelist
Cvelist
added 3 days ago29 views

CVE-2026-63862 PCI: mediatek-gen3: Prevent leaking IRQ domains when IRQ not found

In the Linux kernel, the following vulnerability has been resolved: PCI: mediatek-gen3: Prevent leaking IRQ domains when IRQ not found In mtkpciesetupirq, the IRQ domains are allocated before the controller's IRQ is fetched. If the latter fails, the function directly returns an error, without...

0.00161EPSS
Exploits0References6
EUVD
EUVD
added 3 days ago6 views

EUVD-2026-45546

In the Linux kernel, the following vulnerability has been resolved: PCI: mediatek-gen3: Prevent leaking IRQ domains when IRQ not found In mtkpciesetupirq, the IRQ domains are allocated before the controller's IRQ is fetched. If the latter fails, the function directly returns an error, without...

5.3AI score0.00161EPSS
Exploits0References6
NVD
NVD
added 3 days ago5 views

CVE-2026-53400

In the Linux kernel, the following vulnerability has been resolved: i2c: core: fix adapter registration race Adapters can be looked up based on their id using i2cgetadapter which takes a reference to the embedded struct device. Make sure that the adapter including its struct device has been...

7.8CVSS0.00128EPSS
Exploits0References4
Rows per page
Query Builder