245394 matches found
CVE-2026-72070
CVE-2026-72070 affects the Linux kernel driver for libertas_tf (wifi) and describes a use-after-free in lbtf_free_adapter(). The issue arises because lbtf_free_adapter() calls timer_delete(&priv->command_timer) in teardown, which does not wait for an in-flight command_timer_fn() callback that ...
CVE-2026-72070
In the Linux kernel, the following vulnerability has been resolved: wifi: libertastf: fix use-after-free in lbtffreeadapter lbtffreeadapter calls timerdelete&priv-commandtimer, which does not wait for a running commandtimerfn callback. lbtffreeadapter runs on the teardown path right before...
CVE-2026-72068 posix-cpu-timers: Use u64 multiplication in update_rlimit_cpu()
In the Linux kernel, the following vulnerability has been resolved: posix-cpu-timers: Use u64 multiplication in updaterlimitcpu updaterlimitcpu converts the RLIMITCPU value to nanoseconds with u64 nsecs = rlimnew NSECPERSEC; On 32-bit kernels both rlimnew unsigned long and NSECPERSEC 1000000000L...
CVE-2026-72068
In the Linux kernel, the following vulnerability has been resolved: posix-cpu-timers: Use u64 multiplication in updaterlimitcpu updaterlimitcpu converts the RLIMITCPU value to nanoseconds with u64 nsecs = rlimnew NSECPERSEC; On 32-bit kernels both rlimnew unsigned long and NSECPERSEC 1000000000L...
CVE-2026-72068
CVE-2026-72068 affects the Linux kernel’s posix-cpu-timers, specifically the update_rlimit_cpu() path. On 32‑bit kernels, rlim_new * NSEC_PER_SEC is computed in 32-bit space, causing truncation when rlim_new > 4 seconds and leading to an incorrect (too small) nsecs value stored in the CPU time...
EUVD-2026-59026
In the Linux kernel, the following vulnerability has been resolved: posix-cpu-timers: Use u64 multiplication in updaterlimitcpu updaterlimitcpu converts the RLIMITCPU value to nanoseconds with u64 nsecs = rlimnew NSECPERSEC; On 32-bit kernels both rlimnew unsigned long and NSECPERSEC 1000000000L...
EUVD-2026-59027
In the Linux kernel, the following vulnerability has been resolved: locking/rt: Fix the incorrect RCU protection in rtspinunlock rtspinunlock releases the RCU protection before unlocking the lock. That opens the door for the following UAF scenario: T1 T2 spinlock&p-lock; rcureadlock; invalidatep;...
CVE-2026-72069
Technical details for CVE-2026-72069 are not publicly provided in the supplied documents; monitor for updates.
CVE-2026-72069
In the Linux kernel, the following vulnerability has been resolved: locking/rt: Fix the incorrect RCU protection in rtspinunlock rtspinunlock releases the RCU protection before unlocking the lock. That opens the door for the following UAF scenario: T1 T2 spinlock&p-lock; rcureadlock; invalidatep;...
CVE-2026-72069 locking/rt: Fix the incorrect RCU protection in rt_spin_unlock()
In the Linux kernel, the following vulnerability has been resolved: locking/rt: Fix the incorrect RCU protection in rtspinunlock rtspinunlock releases the RCU protection before unlocking the lock. That opens the door for the following UAF scenario: T1 T2 spinlock&p-lock; rcureadlock; invalidatep;...
EUVD-2026-59025
In the Linux kernel, the following vulnerability has been resolved: cpu: hotplug: Preserve per instance callback errors cpuhpinvokecallback unwinds earlier callbacks for the same hotplug state when one instance fails. The rollback path currently reuses ret, so a successful rollback can hide the...
CVE-2026-72067 cpu: hotplug: Preserve per instance callback errors
In the Linux kernel, the following vulnerability has been resolved: cpu: hotplug: Preserve per instance callback errors cpuhpinvokecallback unwinds earlier callbacks for the same hotplug state when one instance fails. The rollback path currently reuses ret, so a successful rollback can hide the...
CVE-2026-72067
In the Linux kernel, the following vulnerability has been resolved: cpu: hotplug: Preserve per instance callback errors cpuhpinvokecallback unwinds earlier callbacks for the same hotplug state when one instance fails. The rollback path currently reuses ret, so a successful rollback can hide the...
CVE-2026-72067
CVE-2026-72067 affects the Linux kernel CPU hotplug path. The issue arises in cpuhp_invoke_callback() where, if one instance fails, the rollback path reuses the prior return value, which can hide the original error and make a failed transition appear successful. The fix is to keep the rollback re...
CVE-2026-72066
In the Linux kernel, the following vulnerability has been resolved: cpu: hotplug: Bound hotplug states sysfs output statesshow adds CPU hotplug state names into a single sysfs buffer using sprintf. With enough registered states, this can write past the end of the PAGESIZE buffer. Use sysfsemitat ...
CVE-2026-72066
CVE-2026-72066 affects the Linux kernel: cpu: hotplug bound hotplug states sysfs output. The issue arises when states_show() writes CPU hotplug state names into a single sysfs buffer with sprintf(), which can overflow the PAGE_SIZE buffer when many states are registered. The documented fix is to ...
EUVD-2026-59024
In the Linux kernel, the following vulnerability has been resolved: cpu: hotplug: Bound hotplug states sysfs output statesshow adds CPU hotplug state names into a single sysfs buffer using sprintf. With enough registered states, this can write past the end of the PAGESIZE buffer. Use sysfsemitat ...
CVE-2026-72066 cpu: hotplug: Bound hotplug states sysfs output
In the Linux kernel, the following vulnerability has been resolved: cpu: hotplug: Bound hotplug states sysfs output statesshow adds CPU hotplug state names into a single sysfs buffer using sprintf. With enough registered states, this can write past the end of the PAGESIZE buffer. Use sysfsemitat ...
CVE-2026-72064 net: mana: Sync page pool RX frags for CPU
In the Linux kernel, the following vulnerability has been resolved: net: mana: Sync page pool RX frags for CPU MANA allocates RX buffers from page pool fragments when fragcount is greater than 1. In that case the buffers remain DMA mapped by page pool and the RX completion path does not call...
CVE-2026-72065
The CVE-2026-72065 issue affects the Linux kernel networking path for mana devices: it fixes a vulnerability where the packet length reported by the NIC RX CQE could be unchecked before skb processing. The underlying problem is trusting CQE-reported lengths from the NIC and passing them to skb ha...