Lucene search
K

225963 matches found

Cvelist
Cvelist
added 5 days ago27 views

CVE-2026-52987 drm/amdgpu: avoid double drm_exec_fini() in userq validate

In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: avoid double drmexecfini in userq validate When newaddition is true, amdgpuuserqvmvalidate calls drmexecfini&exec before iterating over the collected HMM ranges and calling amdgputtmttgetuserpages. If...

7.8CVSS0.00129EPSS
Exploits0References2
Debian CVE
Debian CVE
added 5 days ago4 views

CVE-2026-52987

In the Linux kernel, the following vulnerability has been resolved: drm/amdgpu: avoid double drmexecfini in userq validate When newaddition is true, amdgpuuserqvmvalidate calls drmexecfini&exec before iterating over the collected HMM ranges and calling amdgputtmttgetuserpages. If...

7.8CVSS5.7AI score0.00129EPSS
Exploits0
Debian CVE
Debian CVE
added 5 days ago4 views

CVE-2026-52986

In the Linux kernel, the following vulnerability has been resolved: netfilter: nfconntracksip: don't use simplestrtoul Replace unsafe port parsing in epaddrlen, ctsipparseheaderuri, and ctsipparserequest with a new sipparseport helper that validates each digit against the buffer limit, eliminatin...

9.8CVSS5.9AI score0.00559EPSS
Exploits0
CVE
CVE
added 5 days ago5 views

CVE-2026-52984

Summary : Linux kernel net/sched/netem vulnerability fixed by correcting the queue limit check. The netem_enqueue() limit used q->t_len (internal tfifo only) and did not count packets placed in sch->q by the reorder path (__qdisc_enqueue_head), allowing total queue occupancy to exceed sch-&...

5.7AI score0.00184EPSS
Exploits0References8
Debian CVE
Debian CVE
added 5 days ago4 views

CVE-2026-52984

In the Linux kernel, the following vulnerability has been resolved: net/sched: netem: fix queue limit check to include reordered packets The queue limit check in netemenqueue uses q-tlen which only counts packets in the internal tfifo. Packets placed in sch-q by the reorder path qdiscenqueuehead...

5.7AI score0.00184EPSS
Exploits0
Debian CVE
Debian CVE
added 5 days ago3 views

CVE-2026-52985

In the Linux kernel, the following vulnerability has been resolved: netdevsim: zero initialize struct iphdr in dummy skbuff Syzbot reports a KMSAN uninit-value originating from nsimdevtrapskbbuild, with the allocation also being performed in the same function. Fix this by calling skbputzero inste...

5.7AI score0.00176EPSS
Exploits0
Debian CVE
Debian CVE
added 5 days ago3 views

CVE-2026-52983

In the Linux kernel, the following vulnerability has been resolved: net: airoha: fix BQL imbalance in TX path Fix a possible BQL imbalance in airohadevxmit, where inflight packets are accounted only for the AIROHANUMTXRING netdev TX queues. The queue index is computed as: qid =...

7.5CVSS5.6AI score0.00451EPSS
Exploits0
CVE
CVE
added 5 days ago8 views

CVE-2026-52981

CVE-2026-52981 concerns a Linux kernel issue in neigh_xmit: when called with an uninitialized neighbor table (e.g., NEIGH_ND_TABLE with IPv6 disabled), neigh_xmit can return -EAFNOSUPPORT without releasing the skb, risking a memory leak. The fix removes the remaining code path that could neither ...

7.5CVSS5.8AI score0.00539EPSS
Exploits0References6
Debian CVE
Debian CVE
added 5 days ago3 views

CVE-2026-52981

In the Linux kernel, the following vulnerability has been resolved: neigh: let neighxmit take skb ownership neighxmit always releases the skb, except when no neighbour table is found. But even the first added user of neighxmit mpls relied on neighxmit to release the skb or queue it for tx. sashik...

7.5CVSS5.8AI score0.00539EPSS
Exploits0
Debian CVE
Debian CVE
added 5 days ago4 views

CVE-2026-52982

In the Linux kernel, the following vulnerability has been resolved: net: usb: rtl8150: fix use-after-free in rtl8150startxmit syzbot reported a KASAN slab-use-after-free read in rtl8150startxmit when accessing skb-len for tx statistics after usbsubmiturb has been called: BUG: KASAN:...

9.8CVSS5.6AI score0.00543EPSS
Exploits0
CVE
CVE
added 5 days ago7 views

CVE-2026-52980

The CVE-2026-52980 issue affects the Linux kernel’s CFS scheduler: when forking a task, rel_deadline may be inherited in sched_entity, causing a relative deadline to be treated as absolute during the first enqueue. This leads to an inflated vruntime after yield_task_fair(), potential overflow of ...

5.8AI score0.00168EPSS
Exploits0References4
Debian CVE
Debian CVE
added 5 days ago3 views

CVE-2026-52980

In the Linux kernel, the following vulnerability has been resolved: sched/fair: Clear reldeadline when initializing forked entities A yield-triggered crash can happen when a newly forked schedentity enters the fair class with se-reldeadline unexpectedly set. The failing sequence is: 1. A task is...

5.7AI score0.00168EPSS
Exploits0
Debian CVE
Debian CVE
added 5 days ago3 views

CVE-2026-52979

In the Linux kernel, the following vulnerability has been resolved: net: psp: check for device unregister when creating assoc pspassocdevicegetlocked obtains a pspdev reference via pspdevgetforsock which uses pspdevtryget under RCU; it then acquires psd-lock and drops the reference. Before the lo...

5.6AI score0.00166EPSS
Exploits0
Debian CVE
Debian CVE
added 5 days ago3 views

CVE-2026-52978

In the Linux kernel, the following vulnerability has been resolved: net: psp: require admin permission for dev-set and key-rotate The dev-set and key-rotate netlink operations modify shared device state PSP version configuration and cryptographic key material, respectively but do not require...

5.6AI score0.00173EPSS
Exploits0
CVE
CVE
added 5 days ago9 views

CVE-2026-52977

CVE-2026-52977 affects the Linux kernel futex subsystem, describing a race between wait-requeue-pi (task A) and requeue-PI (task B) that can cause a live lock on UP systems when a signal/timeout wakeup occurs. The race involves futex_wait_requeue_pi() -> futex_setup_timer() -> futex_do_wait...

5.7AI score0.00172EPSS
Exploits0References6
Debian CVE
Debian CVE
added 5 days ago9 views

CVE-2026-52977

In the Linux kernel, the following vulnerability has been resolved: futex: Prevent lockup in requeue-PI during signal/ timeout wakeup During wait-requeue-pi task A and requeue-PI task B the following race can happen: Task A Task B futexwaitrequeuepi futexsetuptimer futexdowait futexrequeue CLASSh...

5.6AI score0.00172EPSS
Exploits0
Debian CVE
Debian CVE
added 5 days ago3 views

CVE-2026-52976

In the Linux kernel, the following vulnerability has been resolved: drm/xe: Fix error cleanup in xeexecqueuecreateioctl Two error handling issues exist in xeexecqueuecreateioctl: 1. When xehwenginegroupaddexecqueue fails, the error path jumps to putexecqueue which skips xeexecqueuekill. If the VM...

7.8CVSS5.7AI score0.00134EPSS
Exploits0
CVE
CVE
added 5 days ago6 views

CVE-2026-52975

The CVE concerns the Linux kernel bonding 3ad module. A data-race was found in bond_3ad_get_active_agg_info / bond_3ad_state_machine_handler due to insufficient Read-Copy-Update (RCU) handling for port->aggregator. The fix adds the __rcu qualifier to port->aggregator and uses proper RCU API...

7.8CVSS5.7AI score0.00138EPSS
Exploits0References5
Debian CVE
Debian CVE
added 5 days ago4 views

CVE-2026-52975

In the Linux kernel, the following vulnerability has been resolved: bonding: 3ad: implement proper RCU rules for port-aggregator syzbot found a data-race in bond3adgetactiveagginfo / bond3adstatemachinehandler 1 which hints at lack of proper RCU implementation. Add rcu qualifier to port-aggregato...

7.8CVSS5.7AI score0.00138EPSS
Exploits0
Cvelist
Cvelist
added 5 days ago26 views

CVE-2026-52974 net: tls: fix strparser anchor skb leak on offload RX setup failure

In the Linux kernel, the following vulnerability has been resolved: net: tls: fix strparser anchor skb leak on offload RX setup failure When tlssetdeviceoffloadrx fails at tlsdevadd, the error path calls tlsswfreeresourcesrx to clean up the SW context that was initialized by tlssetswoffload. This...

7.5CVSS0.00506EPSS
Exploits0References6
Rows per page
Query Builder