Export limit exceeded: 380846 CVEs match your query. Please refine your search to export 10,000 CVEs or fewer.

Search

Search Results (380846 CVEs found)

CVE Vendors Products Updated CVSS v3.1
CVE-2026-68186 1 Linux 1 Linux Kernel 2026-08-19 5.5 Medium
In the Linux kernel, the following vulnerability has been resolved: binfmt_misc: set have_execfd only once the interpreter is opened load_misc_binary() raises bprm->have_execfd as soon as it sees the 'O' (or 'C') flag. This happens well before it opens the interpreter. If that open fails the flag stays set on the bprm. binfmt_misc is at the head of the format list so an interpreter open failure that returns -ENOEXEC lets the search fall through to a later format. This means it runs the matched binary directly having never staged an interpreter. So bprm->executable is NULL while have_execfd falsely claims a descriptor is present. Consequently, begin_new_exec() dereferences the missing executable: would_dump(bprm, bprm->executable); and NULL derefs. Had it not, the hand-off later in the same function would have failed anyway. FD_ADD(0, bprm->executable) rejects a NULL file with -ENOMEM. Both sites are past the point of no return so the exec cannot be unwound either way. This can be reached by unprivileged users as binfmt_misc can be mounted in user namespaces. So a user can register an 'O' entry whose interpreter lives on a FUSE mount, have the FUSE server fail the open with -ENOEXEC and execute a native ELF file that matches the entry. have_execfd only means anything alongside the executable it describes which is not set until the interpreter has been opened and staged. So lets raise it there, next to execfd_creds, which is already set at that point. An open failure now leaves it clear, so the fallback format derives credentials from the binary and emits no AT_EXECFD, as it would for any native exec. The argv rewrite load_misc_binary() performs before the open is still not undone. This means the binary sees the interpreter path in argv[0] and its own path in argv[1] but that predates this change and only became observable once the exec stopped faulting.
CVE-2021-27085 1 Microsoft 7 Internet Explorer, Windows 10 1803, Windows 10 1809 and 4 more 2026-08-19 8.8 High
Internet Explorer Remote Code Execution Vulnerability
CVE-2021-27084 1 Microsoft 2 Maven For Java, Visual Studio Code 2026-08-19 7.8 High
Visual Studio Code Java Extension Pack Remote Code Execution Vulnerability
CVE-2026-68184 1 Linux 1 Linux Kernel 2026-08-19 4.7 Medium
In the Linux kernel, the following vulnerability has been resolved: cdrom: fix stack out-of-bounds read in CDROMVOLCTRL mmc_ioctl_cdrom_volume() first reads the audio control mode page into a 32-byte stack buffer with cgc->buflen set to 24. If the device reports a block descriptor, the function increases cgc->buflen to include that descriptor and reads the page again. For CDROMVOLCTRL, the function then builds a MODE SELECT parameter list by moving cgc->buffer forward by offset - 8 bytes. This drops the block descriptor from the outgoing payload and leaves a new 8-byte mode parameter header in front of the audio control page. However, cgc->buflen is left unchanged. With a standard 8-byte block descriptor, cgc->buffer points at buffer + 8 but cgc->buflen remains 32. cdrom_mode_select() therefore asks the low level packet path to write 32 bytes from that adjusted pointer, reading 8 bytes past the end of the 32-byte stack buffer. This is not hit by CDROMVOLREAD, and CDROMVOLCTRL only triggers it on drives that return a non-zero block descriptor length, which helps explain why it has gone unnoticed. The overread is also sent to the device as extra MODE SELECT payload, so it may not produce an obvious local failure. Reduce cgc->buflen by the same amount as the buffer pointer adjustment so the MODE SELECT transfer covers only the intended parameter list.
CVE-2021-27078 1 Microsoft 1 Exchange Server 2026-08-19 9.1 Critical
Microsoft Exchange Server Remote Code Execution Vulnerability
CVE-2021-27076 1 Microsoft 6 Business Productivity Servers, Sharepoint Foundation, Sharepoint Foundation 2013 and 3 more 2026-08-19 8.8 High
Microsoft SharePoint Server Remote Code Execution Vulnerability
CVE-2026-68183 1 Linux 1 Linux Kernel 2026-08-19 5.5 Medium
In the Linux kernel, the following vulnerability has been resolved: firmware: stratix10-svc: fix memory leaks and list corruption bugs Fix a memory leak when gen_pool_alloc() fails by freeing pmem on the error path. Switch pmem allocation from devm_kzalloc() to kzalloc() with explicit kfree() in the free path to match its list-managed lifetime. Remove the erroneous list_del(&svc_data_mem) which corrupted the list head on failed lookups.
CVE-2021-27066 1 Microsoft 1 Windows Admin Center 2026-08-19 4.3 Medium
Windows Admin Center Security Feature Bypass Vulnerability
CVE-2021-27063 1 Microsoft 10 Windows Server 1909, Windows Server 2004, Windows Server 2008 and 7 more 2026-08-19 7.5 High
Windows DNS Server Denial of Service Vulnerability
CVE-2021-27062 1 Microsoft 2 Hevc Video Extensions, High Efficiency Video Coding 2026-08-19 7.8 High
HEVC Video Extensions Remote Code Execution Vulnerability
CVE-2021-27061 1 Microsoft 2 Hevc Video Extensions, High Efficiency Video Coding 2026-08-19 7.8 High
HEVC Video Extensions Remote Code Execution Vulnerability
CVE-2026-68182 1 Linux 1 Linux Kernel 2026-08-19 4.4 Medium
In the Linux kernel, the following vulnerability has been resolved: comedi: comedi_parport: deal with premature interrupt Syzbot reported a general protection fault in `comedi_get_is_subdevice_running()`, which was called from the interrupt handler `parport_interrupt()` in the "comedi_parport" driver, but it does not currently have a C reproducer for the problem. It's probably due to a premature interrupt for one of two reasons: 1. The driver sets up the interrupt handler before the comedi subdevices used by the interrupt handler have been allocated, but does not disable the interrupt in the parallel port's CTRL register first. 2. The driver uses a user-supplied I/O port base address which Syzbot would have supplied, but it might not be backed by real parallel port hardware. Change the initialization order in the driver's comedi "attach" handler (`parport_attach()`) so that the hardware registers are initialized before the interrupt handler is requested. This should prevent premature interrupts occurring for real hardware. Also add a test to the interrupt handler to ensure the comedi device is fully attached and return early if it isn't.
CVE-2021-27058 1 Microsoft 1 365 Apps 2026-08-19 7.8 High
Microsoft Office ClickToRun Remote Code Execution Vulnerability
CVE-2021-27057 1 Microsoft 11 365 Apps, Excel, Excel 2013 and 8 more 2026-08-19 7.8 High
Microsoft Office Remote Code Execution Vulnerability
CVE-2021-27056 1 Microsoft 6 365 Apps, Office, Office 2019 and 3 more 2026-08-19 7.8 High
Microsoft PowerPoint Remote Code Execution Vulnerability
CVE-2026-68180 1 Linux 1 Linux Kernel 2026-08-19 5.5 Medium
In the Linux kernel, the following vulnerability has been resolved: intel_th: fix MSC output device reference leak intel_th_output_open() looks up the output device with bus_find_device_by_devt(), which returns the device with a reference that must be dropped after use. commit 95fc36a234da ("intel_th: fix device leak on output open()") attempted to drop the reference from intel_th_output_release(). However, a successful open replaces file->f_op with the output driver file operations before returning, so close runs the output driver release callback instead. For MSC outputs, close runs intel_th_msc_release(), which only removes the per-file iterator and does not drop the device reference taken by intel_th_output_open(). Consequently, every successful MSC output open leaks one device reference. Drop the device reference from intel_th_msc_release(), which is the release path actually used for MSC output files. Remove the now-unused intel_th_output_release() callback from intel_th_output_fops.
CVE-2021-27055 1 Microsoft 6 365 Apps, Office, Office 2019 and 3 more 2026-08-19 7 High
Microsoft Visio Security Feature Bypass Vulnerability
CVE-2021-27054 1 Microsoft 11 365 Apps, Excel, Excel 2013 and 8 more 2026-08-19 7.8 High
Microsoft Excel Remote Code Execution Vulnerability
CVE-2021-27053 1 Microsoft 9 365 Apps, Excel, Excel 2013 and 6 more 2026-08-19 7.8 High
Microsoft Excel Remote Code Execution Vulnerability
CVE-2021-27052 1 Microsoft 4 Sharepoint Enterprise Server, Sharepoint Server, Sharepoint Server 2016 and 1 more 2026-08-19 5.3 Medium
Microsoft SharePoint Server Information Disclosure Vulnerability