Lucene search
+L

5240 matches found

EUVD
EUVD
added 4 days ago7 views

EUVD-2026-59293

In the Linux kernel, the following vulnerability has been resolved: hwmon: aspeed-g6-pwm-tach Guard fan RPM calculation against divide-by-zero Sashiko reports: In the aspeed-g6-pwm-tacho driver, the aspeedtachvaltorpm function calculates the fan RPM using the tachometer value. However, it does no...

5.4AI score0.002EPSS
SaveExploits0References4
OSV
OSV
added 4 days ago7 views

CVE-2026-72394 hwmon: (aspeed-g6-pwm-tach) Guard fan RPM calculation against divide-by-zero

In the Linux kernel, the following vulnerability has been resolved: hwmon: aspeed-g6-pwm-tach Guard fan RPM calculation against divide-by-zero Sashiko reports: In the aspeed-g6-pwm-tacho driver, the aspeedtachvaltorpm function calculates the fan RPM using the tachometer value. However, it does no...

5.5AI score
SaveExploits0References7
CVE
CVE
added 4 days ago15 views

CVE-2026-72394

The CVE pertains to the Linux kernel hwmon subsystem, specifically the aspeed-g6-pwm-tach driver. The aspeed_tach_val_to_rpm() function computes fan RPM from the tachometer value without guarding against tach value 0. If tach_div becomes 0, a subsequent do_div() division by zero triggers a kernel...

5.4AI score0.002EPSS
SaveExploits0References4
Cvelist
Cvelist
added 4 days ago33 views

CVE-2026-72394 hwmon: (aspeed-g6-pwm-tach) Guard fan RPM calculation against divide-by-zero

In the Linux kernel, the following vulnerability has been resolved: hwmon: aspeed-g6-pwm-tach Guard fan RPM calculation against divide-by-zero Sashiko reports: In the aspeed-g6-pwm-tacho driver, the aspeedtachvaltorpm function calculates the fan RPM using the tachometer value. However, it does no...

0.002EPSS
SaveExploits0References4
CVE
CVE
added 4 days ago19 views

CVE-2026-72392

The CVE-2026-72392 entry describes a NULL pointer dereference in the Linux kernel during multi-batch inet6_dump_fib/walk logic for IPv6 fib6_dump_table and inet6_dump_fib. The root cause is that inet6_dump_fib() saves progress using a positional index in cb->args[1], which can be invalidated b...

5.4AI score0.00206EPSS
SaveExploits0References6
CVE
CVE
added 4 days ago16 views

CVE-2026-72385

CVE-2026-72385 concerns the Linux kernel tracing/fprobe component. The issue is a NULL pointer dereference in fprobe_fgraph_entry() caused by mis-synchronization between two walks that size and fill a shadow-stack reservation under rcu_read_lock(). If a fprobe on an already-live ip becomes visibl...

5.3AI score0.00198EPSS
SaveExploits0References3
EUVD
EUVD
added 4 days ago5 views

EUVD-2026-59268

In the Linux kernel, the following vulnerability has been resolved: minix: avoid overflow in bitmap block count calculation minixchecksuperblock uses minixblocksneeded to verify that the on-disk imap and zmap block counts are large enough for the advertised inode and zone counts. The helper...

5.5AI score0.00175EPSS
SaveExploits0References5
Cvelist
Cvelist
added 4 days ago31 views

CVE-2026-72369 minix: avoid overflow in bitmap block count calculation

In the Linux kernel, the following vulnerability has been resolved: minix: avoid overflow in bitmap block count calculation minixchecksuperblock uses minixblocksneeded to verify that the on-disk imap and zmap block counts are large enough for the advertised inode and zone counts. The helper...

7.8CVSS0.00175EPSS
SaveExploits0References5
CVE
CVE
added 4 days ago15 views

CVE-2026-72369

CVE-2026-72369 (Minix) - detail summary : The Linux kernel vulnerability arises in minix_check_superblock() where minix_blocks_needed() uses unsigned DIV_ROUND_UP(), allowing s_ninodes/s_zones near UINT_MAX to wrap to zero, making a zero bitmap-block count appear valid. This can lead to dereferen...

7.8CVSS5.4AI score0.00175EPSS
SaveExploits0References5
OSV
OSV
added 4 days ago3 views

CVE-2026-72369 minix: avoid overflow in bitmap block count calculation

In the Linux kernel, the following vulnerability has been resolved: minix: avoid overflow in bitmap block count calculation minixchecksuperblock uses minixblocksneeded to verify that the on-disk imap and zmap block counts are large enough for the advertised inode and zone counts. The helper...

7.8CVSS5.6AI score
SaveExploits0References8
Cvelist
Cvelist
added 4 days ago21 views

CVE-2026-72334 Bluetooth: ISO: fix malformed ISO_END/CONT handling

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix malformed ISOEND/CONT handling Core specification Part C vol 4 sec 5.4.5 does not exclude empty ISOCONT, ISOEND packets. We currently reject them if they are last. If controller sends malformed sequence ISOSTA...

8.8CVSS0.00341EPSS
SaveExploits0References2
OSV
OSV
added 4 days ago10 views

CVE-2026-72323 ipv4: igmp: Fix potential UAF in igmp_gq_start_timer()

In the Linux kernel, the following vulnerability has been resolved: ipv4: igmp: Fix potential UAF in igmpgqstarttimer A race condition exists between device teardown inetdevdestroy and incoming IGMP query processing igmprcv, leading to a Use-After-Free in the IGMP timer callback. During device...

9.8CVSS5.6AI score
SaveExploits0References8
Cvelist
Cvelist
added 4 days ago23 views

CVE-2026-72298 net: qrtr: fix 32-bit integer overflow in qrtr_endpoint_post()

In the Linux kernel, the following vulnerability has been resolved: net: qrtr: fix 32-bit integer overflow in qrtrendpointpost qrtrendpointpost validates an incoming packet with if !size || len != ALIGNsize, 4 + hdrlen goto err; where size comes from the wire. On 32-bit, sizet is 32 bits and...

8.4CVSS0.00182EPSS
SaveExploits0References8
Debian CVE
Debian CVE
added 4 days ago5 views

CVE-2026-72270

In the Linux kernel, the following vulnerability has been resolved: fbdev: s3fb: fix potential memory leak in s3pciprobe In s3pciprobe, the memory allocated for modelist using fbvideomodetomodelist is not freed in subsequent error paths. Fix that by calling fbdestroymodelist...

5.3AI score0.0021EPSS
SaveExploits0
EUVD
EUVD
added 4 days ago5 views

EUVD-2026-58952

In the Linux kernel, the following vulnerability has been resolved: fs/ntfs3: add depth limit to indxfindbuffer to prevent stack overflow indxfindbuffer recursively descends the B+ tree index with no depth limit. A crafted NTFS image with circular index node references causes unbounded recursion,...

5.4AI score0.00744EPSS
SaveExploits0References7
CVE
CVE
added 4 days ago21 views

CVE-2026-72194

The CVE-2026-72194 issue affects the Linux kernel’s ntfs3 implementation. A depth-unlimited recursion in indx_find_buffer() when traversing the NTFS B+ tree can be triggered by mounting a malicious NTFS image and deleting a file whose index entry engages the rebalancing path, potentially causing ...

9.8CVSS5.4AI score0.00744EPSS
SaveExploits0References7
Cvelist
Cvelist
added 4 days ago19 views

CVE-2026-72191 ntfs3: validate split-point offset in indx_insert_into_buffer

In the Linux kernel, the following vulnerability has been resolved: ntfs3: validate split-point offset in indxinsertintobuffer indxinsertintobuffer computes used = used1 - tocopy - spsize; memmovedet, Add2Ptrsp, spsize, used - le32tocpuhdr1-deoff; where sp and spsize come from hdrfindsplit...

9.8CVSS0.00618EPSS
SaveExploits0References5
OSV
OSV
added 4 days ago2 views

CVE-2026-72191 ntfs3: validate split-point offset in indx_insert_into_buffer

In the Linux kernel, the following vulnerability has been resolved: ntfs3: validate split-point offset in indxinsertintobuffer indxinsertintobuffer computes used = used1 - tocopy - spsize; memmovedet, Add2Ptrsp, spsize, used - le32tocpuhdr1-deoff; where sp and spsize come from hdrfindsplit...

9.8CVSS5.4AI score
SaveExploits0References8
Debian CVE
Debian CVE
added 4 days ago5 views

CVE-2026-72186

In the Linux kernel, the following vulnerability has been resolved: ntfs: make system files immutable to prevent corruption When a system file such as $Bitmap is exposed via showsysfiles and written from userspace, the volume is corrupted and, because the cluster allocator scans $Bitmap through t...

9.1CVSS5.4AI score0.00467EPSS
SaveExploits0
Debian CVE
Debian CVE
added 4 days ago3 views

CVE-2026-72179

In the Linux kernel, the following vulnerability has been resolved: riscv: cacheinfo: Fix node reference leak in populatecacheleaves Currently, the while loop drops the reference to prev in each iteration. If the loop terminates early due to a break, the final ofnodeputnp correctly drops the...

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