Total CVEs

140,406

Critical Severity

3,747

High Severity

13,541

Last 7 Days

1,729
Quick preset (or use dates below)
Clear Filters
๐Ÿ“… Showing Year: 2026 (January 1 - December 31, 2026) View All Years โ†’
Showing 821 - 840 of 36,811 CVEs

In the Linux kernel, the following vulnerability has been resolved: ALSA: seq: dummy: fix UMP event stack overread The dummy sequencer port forwards events by copying an incoming struct snd_seq_event into a stack temporary, rewriting source and destination, and dispatching the temporary to subscri...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53240 HIGH - 8.8

In the Linux kernel, the following vulnerability has been resolved: xfrm: iptfs: fix use-after-free on first_skb in __input_process_payload __input_process_payload() stores first_skb into xtfs->ra_newskb under drop_lock when starting partial reassembly, then unlocks and breaks out of the proces...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53239 HIGH - 7.8

In the Linux kernel, the following vulnerability has been resolved: xfrm: policy: fix use-after-free on inexact bin in xfrm_policy_bysel_ctx() Fix the race by pruning the bin while still holding xfrm_policy_lock, before dropping it. Use __xfrm_policy_inexact_prune_bin() directly since the lock is ...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: netlabel: validate unlabeled address and mask attribute lengths netlbl_unlabel_addrinfo_get() used the address attribute length to determine whether the attribute data could be read as an IPv4 or IPv6 address, but did not independ...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: gpio: mvebu: fix NULL pointer dereference in suspend/resume mvebu_pwm_suspend() and mvebu_pwm_resume() are called for all GPIO banks during suspend/resume, but not all banks have PWM functionality. GPIO banks without PWM have mvch...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: tcp: restrict SO_ATTACH_FILTER to priv users This patch restricts the use of SO_ATTACH_FILTER (cBPF) on TCP sockets to users with CAP_NET_ADMIN capability. This blocks potential side-channel attack where an unprivileged applicati...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53235 HIGH - 7.5

In the Linux kernel, the following vulnerability has been resolved: net: add pskb_may_pull() to skb_gro_receive_list() skb_gro_receive_list() calls skb_pull(skb, skb_gro_offset(skb)) without first ensuring the data is in the linear area via pskb_may_pull(). When the skb arrives via napi_gro_frags(...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: net: ibm: emac: Fix use-after-free during device removal The driver was using devm_register_netdev() which causes unregister_netdev() to be deferred until the devres cleanup phase, which runs after emac_remove() returns. This crea...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: netdev: fix double-free in netdev_nl_bind_rx_doit() Sashiko flags that genlmsg_reply() always consumes the skb. The error path calls nlmsg_free(rsp) so we can't jump directly to it. Let's not unbind, just propagate the e...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53232 HIGH - 8.8

In the Linux kernel, the following vulnerability has been resolved: net: phy: clean the sfp upstream if phy probing fails Sashiko reported that we don't call sfp_bus_del_upstream() in the probe failure path, so let's add it, otherwise the sfp-bus is left with a dangling 'upstream�...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: net: phy: don't try to setup PHY-driven SFP cages when using genphy We don't have support for PHY-driver SFP cages with the genphy code. On top of that, it was found by sashiko that running sfp_bus_add_upstream() for ge...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53230 HIGH - 8.7

In the Linux kernel, the following vulnerability has been resolved: net/mlx5: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list mlx5_query_nic_vport_mac_list() sizes its firmware command buffer using the PF's log_max_current_uc/mc_list capabilities. When querying a VF vport with a large...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53229 HIGH - 7.5

In the Linux kernel, the following vulnerability has been resolved: net/mlx5e: xsk: Fix DMA and xdp_frame leak on XDP_TX xmit failure In the XSK branch of mlx5e_xmit_xdp_buff(), when sq->xmit_xdp_frame() returns false (e.g. XDPSQ is full), the function returns without unmapping the DMA address ...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53228 CRITICAL - 9.8

In the Linux kernel, the following vulnerability has been resolved: ipv6: sit: reload inner IPv6 header after GSO offloads ipip6_tunnel_xmit() caches the inner IPv6 header pointer at function entry and continues using it after iptunnel_handle_offloads(). For GSO skbs, iptunnel_handle_offloads() c...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: net: openvswitch: fix possible kfree_skb of ERR_PTR After the patch in the "Fixes" tag, the allocation of the "reply" skb can happen either before or after locking the ovs_mutex. However, error cleanups still ...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: gpio: rockchip: fix generic IRQ chip leak on remove The driver allocates domain generic chips using irq_alloc_domain_generic_chips() during probe. However, on driver remove/teardown, the generic chips are not automatically freed w...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53225 CRITICAL - 9.1

In the Linux kernel, the following vulnerability has been resolved: sctp: fix uninit-value in __sctp_rcv_asconf_lookup() __sctp_rcv_asconf_lookup() in net/sctp/input.c only checks that the ASCONF chunk can hold the ADDIP header and a parameter header, then calls af->from_addr_param(), which rea...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53224 CRITICAL - 9.1

In the Linux kernel, the following vulnerability has been resolved: sctp: validate embedded INIT chunk and address list lengths in cookie sctp_unpack_cookie() only checked that the embedded INIT chunk length did not exceed the remaining cookie payload, but did not ensure that the INIT chunk is lar...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD
CVE-2026-53223 HIGH - 7.1

In the Linux kernel, the following vulnerability has been resolved: net: guard timestamp cmsgs to real error queue skbs skb_is_err_queue() treats PACKET_OUTGOING as the sole marker for an skb from sk_error_queue. That assumption is not true for AF_PACKET sockets: outgoing packet taps are also deli...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD

In the Linux kernel, the following vulnerability has been resolved: ptp: ocp: fix resource freeing order Commit a60fc3294a37 ("ptp: rework ptp_clock_unregister() to disable events") added a call to ptp_disable_all_events() which changes the configuration of pins if they support EXTTS eve...

Vendor: Linux
Product: Linux
Published: Jun 25, 2026
Source: NVD