393962 matches found
CVE-2026-72367 iomap: guard io_size EOF trim against concurrent truncate underflow
In the Linux kernel, the following vulnerability has been resolved: iomap: guard iosize EOF trim against concurrent truncate underflow iomap: fix zero padding data issue in concurrent append writes changed ioend accounting so that iosize tracks only valid data within EOF. This trims iosize when a...
CVE-2026-72352 HID: bpf: Fix hid_bpf_get_data() range check
In the Linux kernel, the following vulnerability has been resolved: HID: bpf: Fix hidbpfgetdata range check hidbpfgetdata returns a pointer into the HID-BPF context data when the caller-provided offset and size fit inside ctx-allocatedsize. The current check adds rdwrbufsize and offset before...
CVE-2026-72352 HID: bpf: Fix hid_bpf_get_data() range check
In the Linux kernel, the following vulnerability has been resolved: HID: bpf: Fix hidbpfgetdata range check hidbpfgetdata returns a pointer into the HID-BPF context data when the caller-provided offset and size fit inside ctx-allocatedsize. The current check adds rdwrbufsize and offset before...
EUVD-2026-59251
In the Linux kernel, the following vulnerability has been resolved: HID: bpf: Fix hidbpfgetdata range check hidbpfgetdata returns a pointer into the HID-BPF context data when the caller-provided offset and size fit inside ctx-allocatedsize. The current check adds rdwrbufsize and offset before...
CVE-2026-72352
In CVE-2026-72352, the Linux kernel HID-BPF path hid_bpf_get_data() could return a pointer into HID-BPF context data when an unsigned wrap-around occurred in the end-range calculation. The bug arises from adding rdwr_buf_size and offset before comparing to ctx->allocated_size, allowing ranges ...
CVE-2026-72343 net/mlx5e: Fix HV VHCA stats zero-sized buffer allocation
In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: Fix HV VHCA stats zero-sized buffer allocation mlx5ehvvhcastatscreate is called from mlx5enicenable, before mlx5eopen. At that point priv-statsnch is still zero, because it is only ever incremented in...
CVE-2026-72334
The CVE describes a Linux kernel Bluetooth ISO handling issue: malformed ISO_CONT/ISO_END sequences could leak conn->rx_skb or trigger a kernel panic. The fix marks unfinished ISO_START via conn->rx_skb != NULL, validates skb lengths before skb_put, and combines ISO_CONT/END paths with prop...
CVE-2026-72332
In the Linux kernel, the following vulnerability has been resolved: accel/amdxdna: Prevent PM resume deadlock in hwctxsyncdebugbo amdxdnahwctxsyncdebugbo invokes the hardware hwctxsyncdebugbo callback while holding xdna-devlock. The callback may call amdxdnacmdsubmit, which in turn calls...
CVE-2026-72326 net/sched: cake: reject overhead values that underflow length
In the Linux kernel, the following vulnerability has been resolved: net/sched: cake: reject overhead values that underflow length CAKE accepts signed overhead values and stores them in an s16, but the adjusted packet length calculation uses unsigned arithmetic. A negative effective length can...
EUVD-2026-59225
In the Linux kernel, the following vulnerability has been resolved: net/sched: cake: reject overhead values that underflow length CAKE accepts signed overhead values and stores them in an s16, but the adjusted packet length calculation uses unsigned arithmetic. A negative effective length can...
EUVD-2026-59220
In the Linux kernel, the following vulnerability has been resolved: ipv4: igmp: Fix potential memory leaks in igmpmodtimer and igmpstoptimer When a timer is deleted and not re-armed in igmpmodtimer, or stopped in igmpstoptimer, the code currently decrements the reference counter of the multicast...
CVE-2026-72319 ipvs: ensure inner headers in ICMP errors are in headroom
In the Linux kernel, the following vulnerability has been resolved: ipvs: ensure inner headers in ICMP errors are in headroom Sashiko points out that after stripping the outer headers with pskbpull we should ensure the inner IP headers in ICMP errors from tunnels are present in the skb headroom f...
CVE-2026-72318 cifs: validate DFS referral string offsets
In the Linux kernel, the following vulnerability has been resolved: cifs: validate DFS referral string offsets parsedfsreferrals validates that the response header and referral array fit in the received buffer, but each referral also contains string offsets supplied by the server. Those offsets a...
CVE-2026-72310
The CVE-2026-72310 issue affects the Linux kernel SMB client, where smb2_ioctl_query_info() validates PASSTHRU_FSCTL payloads but previously added OutputOffset and input_buffer_length using 32-bit arithmetic. This allowed a crafted response to wrap the bounds check, enabling a later copy_to_user(...
EUVD-2026-59209
In the Linux kernel, the following vulnerability has been resolved: smb: client: fix overflow in passthrough ioctl bounds check smb2ioctlqueryinfo validates the PASSTHRUFSCTL response payload before copying it to userspace. The payload offset and length both come from 32-bit fields. The bounds...
CVE-2026-72310 smb: client: fix overflow in passthrough ioctl bounds check
In the Linux kernel, the following vulnerability has been resolved: smb: client: fix overflow in passthrough ioctl bounds check smb2ioctlqueryinfo validates the PASSTHRUFSCTL response payload before copying it to userspace. The payload offset and length both come from 32-bit fields. The bounds...
CVE-2026-72304 ASoC: SOF: ipc4-control: Fix TOCTOU in sof_ipc4_bytes_put
In the Linux kernel, the following vulnerability has been resolved: ASoC: SOF: ipc4-control: Fix TOCTOU in sofipc4bytesput In sofipc4bytesput, the copy size is derived from the old data-size in the buffer rather than the incoming new data's size field from ucontrol. If the new data has a differen...
CVE-2026-72304
The CVE-2026-72304 issue affects the Linux kernel ASoC: SOF IPC4 control path (sofi_ipc4_bytes_put). The root cause is TOCTOU by deriving the copy length from the buffer’s old data->size instead of the incoming data’s size field (sof_abi_hdr.size) provided via ucontrol. When sizes differ, the c...
CVE-2026-72302
CVE-2026-72302 — Linux kernel (ASoC SOF IPC3 control update) Cause: In sof_ipc3_control_update(), the expected_size is computed using firmware-provided cdata->num_elems and could overflow on 32-bit platforms. This overflow could allow a mismatched cdata->rhdr.hdr.size comparison to pass, ri...
CVE-2026-72303 ASoC: SOF: ipc4-control: Validate notification payload size
In the Linux kernel, the following vulnerability has been resolved: ASoC: SOF: ipc4-control: Validate notification payload size Validate MODULENOTIFICATION payload length before reading bytes/channel data in control update handling...