CVE-2026-61925 Overview
CVE-2026-61925 is an incorrect authorization vulnerability [CWE-863] in Windows Installer. An authenticated local attacker can exploit the flaw to elevate privileges on an affected Windows system. Successful exploitation grants the attacker higher privileges, enabling full compromise of confidentiality, integrity, and availability on the local host.
Microsoft published the advisory in the Microsoft CVE-2026-61925 Update Guide. No public proof-of-concept exploit is currently available, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog.
Critical Impact
A local, low-privileged attacker can escalate to SYSTEM-level privileges by abusing improper authorization checks in Windows Installer, leading to full host compromise.
Affected Products
- Microsoft Windows (Windows Installer component)
- Refer to the Microsoft CVE-2026-61925 Update Guide for the authoritative list of affected builds
- Specific product and version enumeration is not present in the NVD record
Discovery Timeline
- 2026-08-11 - CVE-2026-61925 published to NVD
- 2026-08-12 - Last updated in NVD database
Technical Details for CVE-2026-61925
Vulnerability Analysis
The vulnerability resides in the Windows Installer service (msiexec), a Windows component that manages installation, maintenance, and removal of software. Windows Installer runs privileged operations on behalf of users and must enforce strict authorization checks before performing actions that affect system state.
This flaw is an incorrect authorization weakness [CWE-863]. Windows Installer fails to correctly validate that the requesting user is authorized to perform a specific privileged action. An authenticated user with low privileges can invoke an installer operation that should be restricted, and the service performs it under elevated context.
Exploitation is local and does not require user interaction. The attacker must already have valid credentials on the target host. Successful exploitation yields high impact across confidentiality, integrity, and availability.
Root Cause
The root cause is an authorization decision that trusts insufficient inputs or misses a required privilege check within Windows Installer. When a caller requests a privileged installer operation, the service performs the action without verifying that the caller is entitled to the resulting elevated behavior. This class of defect is common in Windows Installer components because installer transactions frequently transition between user and SYSTEM contexts.
Attack Vector
The attack vector is local. An attacker with an authenticated session on the target Windows system invokes the vulnerable installer code path. This can be achieved through interactive logon, remote shell access, or execution via a compromised low-privilege service account.
No detailed exploitation code or proof-of-concept has been published. Microsoft's advisory is the authoritative source for technical details; see the Microsoft CVE-2026-61925 Update Guide.
Detection Methods for CVE-2026-61925
Indicators of Compromise
- Unexpected msiexec.exe invocations from non-administrative user contexts spawning child processes that run as SYSTEM
- MSI installation or repair events initiated by standard users outside change windows
- New services, scheduled tasks, or files written to protected directories following installer activity by low-privileged accounts
Detection Strategies
- Monitor Windows Event Log channels Application and System for MsiInstaller events (IDs 1000-1042) correlated with process creation events (Sysmon Event ID 1) showing privilege transitions
- Alert on msiexec.exe child processes such as cmd.exe, powershell.exe, or rundll32.exe running under NT AUTHORITY\SYSTEM when the parent was launched by a standard user
- Baseline legitimate software deployment activity and flag installer operations that deviate from approved deployment tooling
Monitoring Recommendations
- Enable command-line and process-creation auditing (Event ID 4688 with command-line inclusion) on all Windows endpoints
- Forward MSI installer telemetry, Sysmon data, and security events to a centralized SIEM for correlation and long-term retention
- Track modifications to HKLM\SOFTWARE\Classes\Installer and %WINDIR%\Installer for anomalous writes by non-administrative accounts
How to Mitigate CVE-2026-61925
Immediate Actions Required
- Apply the Microsoft security update referenced in the Microsoft CVE-2026-61925 Update Guide to all affected Windows systems
- Prioritize patching on multi-user systems, terminal servers, and hosts accessible to low-privileged interactive users
- Audit local accounts and remove unnecessary interactive logon rights to reduce the pool of potential attackers
Patch Information
Microsoft has released a security update addressing CVE-2026-61925. Administrators should deploy the applicable cumulative update through Windows Update, Windows Server Update Services (WSUS), Microsoft Endpoint Configuration Manager, or Microsoft Update Catalog. Consult the Microsoft CVE-2026-61925 Update Guide for build-specific KB article numbers.
Workarounds
- No official workaround has been published; patching is the only complete remediation
- Restrict interactive and remote logon to trusted administrative accounts on high-value systems until patches are deployed
- Configure the AlwaysInstallElevated Group Policy setting to Disabled for both machine and user policies to reduce installer abuse surface
- Enforce application allowlisting through Windows Defender Application Control or AppLocker to block unauthorized MSI packages
# Verify AlwaysInstallElevated is disabled (both keys should be 0 or absent)
reg query "HKLM\SOFTWARE\Policies\Microsoft\Windows\Installer" /v AlwaysInstallElevated
reg query "HKCU\SOFTWARE\Policies\Microsoft\Windows\Installer" /v AlwaysInstallElevated
# Confirm the relevant security update is installed (replace KBxxxxxxx with the KB from the MSRC advisory)
wmic qfe list brief | findstr /i "KBxxxxxxx"
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

