Lucene search
+L

75688 matches found

OSV
OSV
added 2026/07/19 2:55 p.m.5 views

CVE-2026-63966 iio: imu: adis16550: fix stack leak in trigger handler

In the Linux kernel, the following vulnerability has been resolved: iio: imu: adis16550: fix stack leak in trigger handler adis16550triggerhandler declares the scan data array on the stack without initializing it. The memcpy at the bottom fills only the first 28 bytes TEMP + 6 channels of...

5.3AI score
SaveExploits0References6
Debian CVE
Debian CVE
added 2026/07/19 2:55 p.m.10 views

CVE-2026-63967

In the Linux kernel, the following vulnerability has been resolved: iio: imu: stlsm6dsx: fix stack leak in tagged FIFO buffer The tagged FIFO path declares iiobuff on the stack with aligned8 but no initializer, but there is a hole in the structure, which will then leak to userspace as...

5.4AI score0.00211EPSS
SaveExploits0
Cvelist
Cvelist
added 2026/07/19 2:55 p.m.34 views

CVE-2026-63967 iio: imu: st_lsm6dsx: fix stack leak in tagged FIFO buffer

In the Linux kernel, the following vulnerability has been resolved: iio: imu: stlsm6dsx: fix stack leak in tagged FIFO buffer The tagged FIFO path declares iiobuff on the stack with aligned8 but no initializer, but there is a hole in the structure, which will then leak to userspace as...

0.00211EPSS
SaveExploits0References8
OSV
OSV
added 2026/07/19 2:55 p.m.6 views

CVE-2026-63965 iio: pressure: bmp280: fix stack leak in bmp580 trigger handler

In the Linux kernel, the following vulnerability has been resolved: iio: pressure: bmp280: fix stack leak in bmp580 trigger handler bmp580triggerhandler declares its scan buffer on the stack without an initializer and then memcpys 3 bytes of 24-bit sensor data into each 4-byte le32 field. The hig...

5.5AI score
SaveExploits0References6
Debian CVE
Debian CVE
added 2026/07/19 2:55 p.m.8 views

CVE-2026-63965

In the Linux kernel, the following vulnerability has been resolved: iio: pressure: bmp280: fix stack leak in bmp580 trigger handler bmp580triggerhandler declares its scan buffer on the stack without an initializer and then memcpys 3 bytes of 24-bit sensor data into each 4-byte le32 field. The hig...

5.3AI score0.00198EPSS
SaveExploits0
CVE
CVE
added 2026/07/19 2:55 p.m.61 views

CVE-2026-63965

The CVE-2026-63965 entry describes a Linux kernel IIO BMP280/BMP580 trigger handler stack leak: bmp580_trigger_handler() allocated a stack scan buffer and copied 24-bit sensor data into 32-bit fields without proper initialization, leaving high bytes uninitialized and causing two stack bytes per s...

5.5AI score0.00198EPSS
SaveExploits0References3
Cvelist
Cvelist
added 2026/07/19 2:55 p.m.35 views

CVE-2026-63965 iio: pressure: bmp280: fix stack leak in bmp580 trigger handler

In the Linux kernel, the following vulnerability has been resolved: iio: pressure: bmp280: fix stack leak in bmp580 trigger handler bmp580triggerhandler declares its scan buffer on the stack without an initializer and then memcpys 3 bytes of 24-bit sensor data into each 4-byte le32 field. The hig...

0.00198EPSS
SaveExploits0References3
EUVD
EUVD
added 2026/07/19 2:55 p.m.14 views

EUVD-2026-45738

In the Linux kernel, the following vulnerability has been resolved: iio: pressure: bmp280: fix stack leak in bmp580 trigger handler bmp580triggerhandler declares its scan buffer on the stack without an initializer and then memcpys 3 bytes of 24-bit sensor data into each 4-byte le32 field. The hig...

5.5AI score0.00198EPSS
SaveExploits0References3
OSV
OSV
added 2026/07/19 2:55 p.m.6 views

CVE-2026-63961 usb: typec: altmodes/displayport: validate count before reading Status Update VDO

In the Linux kernel, the following vulnerability has been resolved: usb: typec: altmodes/displayport: validate count before reading Status Update VDO A broken/malicious device can send the incorrect count for a status update VDO, which will cause the kernel to read uninitialized stack data and se...

5.3AI score
SaveExploits0References11
Debian CVE
Debian CVE
added 2026/07/19 2:55 p.m.9 views

CVE-2026-63936

In the Linux kernel, the following vulnerability has been resolved: iio: adc: mt6359: fix unchecked return value in mt6358readimp In mt6358readimp, the variable valv is passed to regmapread but the return value is not checked. If the read fails, valv remains uninitialized and its random stack...

5.2AI score0.002EPSS
SaveExploits0
OSV
OSV
added 2026/07/19 2:55 p.m.7 views

CVE-2026-63934 iio: gyro: itg3200: fix i2c read into the wrong stack location

In the Linux kernel, the following vulnerability has been resolved: iio: gyro: itg3200: fix i2c read into the wrong stack location itg3200readallchannels takes be16 buf' as a parameter and fills the i2cmsg destination as char &buf'. Since buf' is the parameter a pointer, &buf' is the address of t...

5.5AI score
SaveExploits0References11
Cvelist
Cvelist
added 2026/07/19 2:55 p.m.27 views

CVE-2026-63934 iio: gyro: itg3200: fix i2c read into the wrong stack location

In the Linux kernel, the following vulnerability has been resolved: iio: gyro: itg3200: fix i2c read into the wrong stack location itg3200readallchannels takes be16 buf' as a parameter and fills the i2cmsg destination as char &buf'. Since buf' is the parameter a pointer, &buf' is the address of t...

0.0021EPSS
SaveExploits0References8
EUVD
EUVD
added 2026/07/19 2:55 p.m.8 views

EUVD-2026-45707

In the Linux kernel, the following vulnerability has been resolved: iio: gyro: itg3200: fix i2c read into the wrong stack location itg3200readallchannels takes be16 buf' as a parameter and fills the i2cmsg destination as char &buf'. Since buf' is the parameter a pointer, &buf' is the address of t...

5.6AI score0.0021EPSS
SaveExploits0References8
CVE
CVE
added 2026/07/19 2:55 p.m.11 views

CVE-2026-63934

The CVE-2026-63934 entry describes a Linux kernel vulnerability in iio: gyro: itg3200 where i2c_read writes into the wrong stack location. Specifically, itg3200_read_all_channels() takes __be16 *buf and uses (char *)&buf for i2c_transfer(), which points to a local stack slot rather than the calle...

5.6AI score0.0021EPSS
SaveExploits0References8
OSV
OSV
added 2026/07/19 2:55 p.m.5 views

CVE-2026-63891 thunderbolt: property: Cap recursion depth in __tb_property_parse_dir()

In the Linux kernel, the following vulnerability has been resolved: thunderbolt: property: Cap recursion depth in tbpropertyparsedir A DIRECTORY entry's value field is used as the diroffset for a recursive call into tbpropertyparsedir with no depth counter. A crafted peer that chains DIRECTORY...

5.3AI score
SaveExploits0References11
Cvelist
Cvelist
added 2026/07/19 2:55 p.m.28 views

CVE-2026-63891 thunderbolt: property: Cap recursion depth in __tb_property_parse_dir()

In the Linux kernel, the following vulnerability has been resolved: thunderbolt: property: Cap recursion depth in tbpropertyparsedir A DIRECTORY entry's value field is used as the diroffset for a recursive call into tbpropertyparsedir with no depth counter. A crafted peer that chains DIRECTORY...

0.00263EPSS
SaveExploits0References8
Positive Technologies
Positive Technologies
added 2026/07/19 12:0 a.m.11 views

PT-2026-61283

Name of the Vulnerable Software and Affected Versions Linux kernel affected versions not specified Description A stack leak occurs in the adis16550 trigger handler function. The function declares a scan data array on the stack without initializing it. While memcpy fills the first 28 bytes and iio...

5.2AI score0.00198EPSS
SaveExploits0
Positive Technologies
Positive Technologies
added 2026/07/19 12:0 a.m.9 views

PT-2026-61284

Name of the Vulnerable Software and Affected Versions Linux kernel affected versions not specified Description A stack leak exists in the tagged FIFO buffer of the st lsm6dsx IMU driver. The iio buff structure is declared on the stack with alignment but without an initializer. Due to a hole in th...

5.4AI score0.00211EPSS
SaveExploits0
Positive Technologies
Positive Technologies
added 2026/07/19 12:0 a.m.12 views

PT-2026-61187

In the Linux kernel, the following vulnerability has been resolved: ieee802154: 6lowpan: only accept IPv6 packets in lowpan xmit The aoe driver or similar generates a non-IPv6 packet e.g., ETH P AOE and queues it for transmission via dev queue xmit on a 6LoWPAN interface configured by the user or...

5.4AI score0.00123EPSS
SaveExploits0References8
Positive Technologies
Positive Technologies
added 2026/07/19 12:0 a.m.13 views

PT-2026-61282

Name of the Vulnerable Software and Affected Versions Linux kernel affected versions not specified Description A stack leak exists in the bmp580 trigger handler function. The function declares a scan buffer on the stack without an initializer and uses memcpy to copy 3 bytes of 24-bit sensor data...

5.4AI score0.00198EPSS
SaveExploits0
Rows per page
Query Builder