Lucene search
+L

432814 matches found

EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59736

In the Linux kernel, the following vulnerability has been resolved: net: udptunnel: fix memory leak in udptunnelnicunregister syzbot reported a memory leak 1 in the UDP tunnel NIC offload code. When device registration fails e.g. in registernetdevice, netdev core unwinds by sending a single...

5.3AI score0.00168EPSS
SaveExploits0References4
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59734

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: clear isodata always when detaching conn from hcon When setting conn-hcon = NULL, also conn-hcon-isodata = NULL is necessary, otherwise later isoconnfree will UAF. Fix clearing of isodata in isosockdisconn Fixes...

5.3AI score0.00247EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59735

In the Linux kernel, the following vulnerability has been resolved: netfs: Fix folioqueue ENOMEM in writeback by adding a mempool Fix the handling of folioqueue allocation failure in writeback by adding a mempool and passing in gfpt flags to the rolling buffer functions that allocate memory, usin...

5.6AI score0.00155EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•4 views

EUVD-2026-59733

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: L2CAP: fix UAF in l2capleconnectrsp l2capleconnectrsp obtains a channel via l2capgetchanbyident but neither holds a reference nor uses l2capchanholdunlesszero before locking and operating on it. A concurrent l2capchand...

5.4AI score0.00247EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59731

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: lock sk in isoconnectind Accessing isopisk-conn requires locksock, which is not taken in the "ev3" part of isoconnectind. It may also be NULL if socket has transitioned away from the LISTEN/CONNECT states before...

5.3AI score0.00239EPSS
SaveExploits0References3
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59732

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: lock sk in isosockgetname Accessing isopisk-conn requires locksock, which is not held here. Fix by adding the lock/release...

5.3AI score0.00249EPSS
SaveExploits0References3
EUVD
EUVD
•added 3 days ago•4 views

EUVD-2026-59729

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix leaking sk after socket release isosockkill tests !sockflagsk, SOCKZAPPED || sk-sksocket || sockflagsk, SOCKDEAD for early return, but this is always true since sockorphansk sets SOCKDEAD, so the sk reference...

5.4AI score0.00168EPSS
SaveExploits0References4
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59730

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: hold sk properly in isoconnready sk deref in isoconnready must be done either under conn-lock, or holding a refcount, to avoid concurrent close. conn-sk is currently accessed without either: Task 1 Task 2...

5.4AI score0.00239EPSS
SaveExploits0References3
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59728

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: avoid deadlocks in isosocktimeout isosocktimeout takes locksock, so sync disabling the timer while holding that lock may deadlock. isosocktimeout may also run concurrently with isoconndel, which leads to UAF Task ...

5.3AI score0.00241EPSS
SaveExploits0References4
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59726

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix race of kfree vs krefgetunlesszero hciconn::isodata is accessed and modified without lock or RCU. This leads to a race Task hdev-workqueue Task 2 isorecv isoconnputconn conn = LOAD hcon-isodata isoconnfreeconn...

5.4AI score0.00218EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•10 views

EUVD-2026-59727

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: ISO: fix refcounting of isoconn isoconndel and isochandel have a race that results to double-put of isoconn: Task hdev-workqueue Task 2 isoconndel isochandel isoconnholdunlesszero isoconnlock isoconnlock conn-sk = NULL...

5.4AI score0.00239EPSS
SaveExploits0References3
EUVD
EUVD
•added 3 days ago•5 views

EUVD-2026-59725

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: btintel: Validate length before parsing diagnostics TLV btinteldiagnostics accesses tlv-val0 without first validating that the diagnostics VSE is long enough to contain that field, so may cause reading data beyond the...

5.4AI score0.00168EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•5 views

EUVD-2026-59724

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hciconn: hold conn reference in abortconnsync There is theoretical UAF if the conn is freed while the hcisync task is running. Hold refcount to avoid that...

5.4AI score0.00254EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•5 views

EUVD-2026-59723

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hcisync: hold conn in hciconnectbigsync callback There is theoretical UAF if the conn is freed while the hcisync task is running. Hold refcount to avoid that. Handle NULL hcon, return 0 + do nothing to match the previo...

5.4AI score0.00218EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•4 views

EUVD-2026-59722

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hcisync: hold conn in hciconnectpasync callback There is theoretical UAF if the conn is freed while the hcisync task is running. Hold refcount to avoid that...

5.4AI score0.0012EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59721

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hcisync: hold conn in hcipastsync callback Avoids giving freed pointers to hciconnvalid, which kmalloc may have reused. Hold refcount to avoid that...

5.4AI score0.0023EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59720

In the Linux kernel, the following vulnerability has been resolved: octeontx2-af: Block VFs from clobbering special CGX PKIND state PF and VF NIX LFs that share a CGX LMAC reuse the same hardware PKIND programming. When HiGig2 or EDSA parsing is enabled, a VF NIX LF alloc must not reset the LMAC ...

5.3AI score0.0012EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59718

In the Linux kernel, the following vulnerability has been resolved: net: sxgbe: free TX rings on RX allocation failure When RX descriptor ring allocation fails, initdmadescrings only frees the partially allocated RX rings and returns. The TX rings that were allocated earlier in the same function...

5.4AI score0.00168EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59719

In the Linux kernel, the following vulnerability has been resolved: scsi: mpi3mr: Fix potential deadlock in mpi3mrfaultueventemit mpi3mrfaultueventemit runs from the fault watchdog and reset paths where host I/O may already be blocked. GFPKERNEL allocations here, both the local kzallocobj and the...

5.4AI score0.00155EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•9 views

EUVD-2026-59717

In the Linux kernel, the following vulnerability has been resolved: riscv: mm: Fix out-of-bounds page-table walk during memory hot-remove removepudmapping and removep4dmapping obtain a child table base with pudoffsetp4dp, 0 and p4doffsetpgd, 0, then add the index for addr. RISC-V folds page-table...

5.4AI score0.00168EPSS
SaveExploits0References4
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59716

In the Linux kernel, the following vulnerability has been resolved: qede: sync udptunnel ports outside qedelock in the recovery path A TX timeout on a qede NIC that has VXLAN/GENEVE tunnel ports configured wedges the rtnetlink control plane of the whole machine: NETDEV WATCHDOG: ens6f1 qede:...

5.4AI score0.00441EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•4 views

EUVD-2026-59714

In the Linux kernel, the following vulnerability has been resolved: ksmbd: use memcmp to compare ClientGUIDs ClientGUID is a fixed-size binary value and can contain embedded NUL bytes. strncmp stops comparing at the first NUL byte, so different ClientGUID values can incorrectly be treated as equa...

5.3AI score0.00315EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•4 views

EUVD-2026-59715

In the Linux kernel, the following vulnerability has been resolved: ksmbd: fix use-after-free in closefiletableids A ksmbdfile can remain alive after logical close while another session holds a temporary reference obtained through ksmbdlookupfdinode. ksmbdclosefd currently marks the file closed a...

5.5AI score0.00403EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59713

In the Linux kernel, the following vulnerability has been resolved: iommu/iommufd: Fix IOPF group ownership UAF iopfgroupalloc links each last-page IOPF group into the generic IOPF pending list before invoking the domain fault handler. iommufdfaultiopfhandler also queued an accepted group in the...

5.5AI score0.00127EPSS
SaveExploits0References3
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59712

In the Linux kernel, the following vulnerability has been resolved: pinctrl: devicetree: don't free uninitialized devname on error path dtrememberorfreemap duplicates devname for each map entry. If kstrdupconst fails, dtfreemap frees devname in all nummaps entries, including entries that have not...

5.6AI score0.00145EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59711

In the Linux kernel, the following vulnerability has been resolved: mm/hugetlb: fix list corruption in allocatefileregionentries allocatefileregionentries tops up resv-regioncache with freshly allocated fileregion descriptors. The allocation uses GFPKERNEL, so resv-lock is dropped around it: the...

5.5AI score0.00125EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59709

In the Linux kernel, the following vulnerability has been resolved: KVM: SVM: Update x2APIC MSR intercepts if AVIC is inhibited while L2 is active Always update x2APIC MSR intercepts for L1 when AVIC is deactivated, even if L2 is active and KVM is using a separate MSR bitmap to run L2. If AVIC is...

5.7AI score0.00134EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59710

In the Linux kernel, the following vulnerability has been resolved: KVM: x86: Cancel delayed I/O APIC EOI handling before destroying vCPUs Cancel and flush the I/O APIC's delayed EOI handling work during the "pre VM destroy" phase, before vCPUs are destroyed, as processing the EOI broadcast will...

5.5AI score0.00131EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•4 views

EUVD-2026-59708

In the Linux kernel, the following vulnerability has been resolved: KVM: s390: pci: Reject adapter interrupt forwarding if already enabled The MPCIFC instruction doesn't allow registering adapter interrupts without first unregistering. So reject any request to enable interrupt forwarding if its...

5.4AI score0.00129EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59707

In the Linux kernel, the following vulnerability has been resolved: KVM: s390: pci: Fix memory accounting for pinned/unpinned pages The accountmem and unaccountmem functions call getuid which increments the reference count of struct userstruct on every invocation. But we don't decrement the count...

5.4AI score0.00166EPSS
SaveExploits0References3
EUVD
EUVD
•added 3 days ago•4 views

EUVD-2026-59706

In the Linux kernel, the following vulnerability has been resolved: dibs: fix use-after-free of dmbnode in loopback attach/detach/unregister dibsloattachdmb, dibslodetachdmb and dibslounregisterdmb look up the dmbnode under dmbhtlock, drop the lock and only then operate on the node's refcount...

5.7AI score0.00124EPSS
SaveExploits0References3
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59705

In the Linux kernel, the following vulnerability has been resolved: audit: fix potential use-after-free in auditdelrule auditdelrule destroys e-rule.exe via auditremovemarkrule before unlinking the rule from RCU-visible filter lists and waiting for a grace period. Concurrent readers in auditfilte...

5.6AI score0.00125EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59704

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: mgmt: fix pending command UAF in EIR updates MGMTOPSETLOCALNAME is handled asynchronously on powered controllers and can run setnamesync. When the controller is BR/EDR capable, setnamesync updates the local name and th...

5.6AI score0.00125EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59703

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: mgmt: fix UAF in pair command cancellation The pairing completion and authentication failure callbacks look up the pending MGMTOPPAIRDEVICE command by walking hdev-mgmtpending. The lookup returned a command that was...

5.5AI score0.00139EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•5 views

EUVD-2026-59701

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: HIDP: reject frames without a transaction header hidprecvctrlframe and hidprecvintrframe read skb-data0 before checking that the L2CAP SDU contains a transaction header. A connected HIDP peer can send an empty basic-mo...

5.3AI score0.00254EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•5 views

EUVD-2026-59702

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: hcisync: Fix advertising data UAFs hcifindadvinstance returns an advinfo pointer that is valid only while hdev-lock is held. The advertising command-sync paths perform instance lookups without that lock and, in some...

5.5AI score0.00235EPSS
SaveExploits0References4
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59699

In the Linux kernel, the following vulnerability has been resolved: afs: Fix UAF when sending a message In afsmakecall, there's a race with async call reception and destruction. If a call is dispatched that doesn't have call-writeiter set used to specify the data content for FS.StoreData, then th...

5.6AI score0.00124EPSS
SaveExploits0References3
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59700

In the Linux kernel, the following vulnerability has been resolved: Bluetooth: HIDP: validate numbered report payloads When hidpgetrawreport waits for a numbered report, hidpprocessdata compares the expected report number with skb-data0. A connected HIDP peer can reply with only a DATA transactio...

5.5AI score0.00231EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59698

In the Linux kernel, the following vulnerability has been resolved: ALSA: 6fire: Fix UAF at error handling during probe Although 6fire driver had a few fixes for dealing with the early error handling during the probe phase, it forgot a pending URB before freeing the resources, which may lead to a...

5.4AI score0.00168EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•9 views

EUVD-2026-59697

In the Linux kernel, the following vulnerability has been resolved: ALSA: seq: Fix division by zero in initializetimer A userspace-driven ALSA timer SNDUTIMER lets an unprivileged user set the backing sndtimer's hardware resolution to an arbitrary 64-bit value via SNDRVTIMERIOCTLCREATE...

5.6AI score0.00168EPSS
SaveExploits0References4
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59696

In the Linux kernel, the following vulnerability has been resolved: ALSA: timer: Clear SNDRVTIMERIFLGDEAD once the close completes sndtimercloselocked marks an instance with SNDRVTIMERIFLGDEAD and returns early when the flag is already set, but the flag is never cleared again. A completed close...

5.4AI score0.00129EPSS
SaveExploits0References4
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59695

In the Linux kernel, the following vulnerability has been resolved: ALSA: ump: fix double free of outcvts on rawmidi error sndumpattachlegacyrawmidi allocates the legacy conversion array ump-outcvts and, on the sndrawmidinew error path, frees it with kfree but leaves ump-outcvts pointing at the...

5.4AI score0.00168EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59694

In the Linux kernel, the following vulnerability has been resolved: ALSA: usb-audio: fix use-after-free in umptoendpoint createmidi2ump registers a card-owned sndumpendpoint and stores a back-pointer to its per-interface sndusbmidi2ump object in ump-privatedata, but it never installs an...

5.4AI score0.00168EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59693

In the Linux kernel, the following vulnerability has been resolved: ALSA: usb-audio: fix stack info leak in RME Digiface status sndrmedigifacereadstatus reads a four-word status block from the device into an uninitialised on-stack le32 buf4 and, whenever the vendor control-IN transfer does not...

5.8AI score0.00168EPSS
SaveExploits0References4
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59692

In the Linux kernel, the following vulnerability has been resolved: ALSA: usb-audio: fix OOB write in sndusbmidiakaioutput sndusbmidiakaioutput computes its fill-loop bound bufend = ep-maxtransfer - MAXAKAISYSEXLEN - 1; as a signed int, so a small device-advertised bulk-OUT maxtransfer makes bufe...

5.3AI score0.00168EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59691

In the Linux kernel, the following vulnerability has been resolved: ALSA: usb-audio: Fix DMA buffer out-of-bounds write when fillmax is set When a USB audio endpoint requests full packet transfers via the fillmax descriptor flag, dataepsetparams promotes ep-curpacksize to ep-maxpacksize. However,...

5.6AI score0.00168EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•7 views

EUVD-2026-59690

In the Linux kernel, the following vulnerability has been resolved: ALSA: usb-audio: Clamp frame size in implicit-feedback mode sndusbhandlesyncurb scales received sync packet sizes by the sender's stride and stores the result directly in outpacket-packetsizei. If a connected USB device sends an...

5.4AI score0.00142EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59689

In the Linux kernel, the following vulnerability has been resolved: fou: Fix use-after-free in foucreate foucreate publishes struct fou through skuserdata before adding the new FOU port to the per-netns list. If fouaddtoportlist fails, the error path frees fou while it is still reachable through...

5.5AI score0.0012EPSS
SaveExploits0References2
EUVD
EUVD
•added 3 days ago•6 views

EUVD-2026-59688

In the Linux kernel, the following vulnerability has been resolved: igbvf: Fix leak in TX DMA error cleanup If an error is encountered while mapping TX buffers, the driver should unmap any buffers already mapped for that skb. Because count is incremented before each frag mapping, it will always...

5.4AI score0.00457EPSS
SaveExploits0References5
EUVD
EUVD
•added 3 days ago•8 views

EUVD-2026-59687

In the Linux kernel, the following vulnerability has been resolved: ksmbd: reject repeated SMB2 NEGOTIATE requests Unauthenticated client can send multiple successful SMB2 NEGOTIATE requests on one connection before SESSIONSETUP. While the connection is in KSMBDSESSNEEDSETUP, smb2handlenegotiate...

5.5AI score0.00166EPSS
SaveExploits0References3
Total number of security vulnerabilities432814