CVE-2026-58631 Overview
CVE-2026-58631 is an improper authorization vulnerability [CWE-285] in Microsoft Windows Admin Center. An authenticated local attacker can leverage the flaw to execute code on the affected host with elevated privileges. Microsoft published the advisory through the Microsoft Security Response Center on July 14, 2026.
The vulnerability requires local access and low privileges, but no user interaction. Successful exploitation compromises confidentiality, integrity, and availability of the affected system. Administrators managing Windows Server infrastructure through Windows Admin Center should treat this as a priority patching item.
Critical Impact
An authorized attacker with local access to a host running Windows Admin Center can execute arbitrary code and escalate privileges, gaining full control of the management plane used to administer Windows servers.
Affected Products
- Microsoft Windows Admin Center (all versions prior to the July 2026 security update)
- Windows Admin Center gateway installations on Windows Server
- Windows Admin Center deployments managing hybrid and on-premises Windows infrastructure
Discovery Timeline
- 2026-07-14 - CVE-2026-58631 published to NVD
- 2026-07-14 - Microsoft releases security guidance via MSRC
- 2026-07-17 - Last updated in NVD database
Technical Details for CVE-2026-58631
Vulnerability Analysis
Windows Admin Center is a browser-based management tool used to administer Windows Servers, clusters, hyper-converged infrastructure, and Windows 10/11 endpoints. It runs as a gateway service that brokers privileged operations against managed nodes. Because the gateway executes actions with high-privilege context, any authorization gap inside it directly translates into privilege escalation.
CVE-2026-58631 stems from improper authorization enforcement within the product. An attacker who already holds a low-privileged local account can invoke functionality that should be restricted to administrators. The result is local code execution in a higher privilege context.
The vulnerability is not exploitable over the network in isolation. It requires local access, but that access can be obtained through prior compromise, malicious insiders, or lateral movement from another workstation.
Root Cause
The root cause is a missing or incorrectly evaluated authorization check [CWE-285]. Windows Admin Center accepts a request from an authenticated principal without verifying that the principal is permitted to perform the requested privileged operation. The gateway then carries out the action using its own elevated identity.
Attack Vector
The attack vector is local. An attacker authenticates to the host running Windows Admin Center using low-privilege credentials, then sends a crafted request to the gateway component to trigger the vulnerable code path. No user interaction is required, and exploit complexity is low. No public proof-of-concept code has been published, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog.
The vulnerability mechanism is described in the Microsoft Security Update Guide. Microsoft has not released technical exploitation details or sample code.
Detection Methods for CVE-2026-58631
Indicators of Compromise
- Unexpected child processes spawned by the Windows Admin Center gateway service (ServerManagementGateway / sme.exe) running as SYSTEM or NetworkService.
- New scheduled tasks, services, or local accounts created shortly after Windows Admin Center activity by a non-administrative user.
- Anomalous PowerShell or cmd.exe invocations originating from the Windows Admin Center process tree.
Detection Strategies
- Baseline the normal process tree of the Windows Admin Center gateway and alert on deviations, particularly interactive shells or LOLBins launched as children.
- Correlate low-privileged user sessions with subsequent privileged process creations on the same host within a short time window.
- Review Windows Admin Center audit logs for privileged operations performed by accounts that lack the corresponding role assignments.
Monitoring Recommendations
- Forward Windows Admin Center event logs and Sysmon process creation events (Event ID 1) to a centralized SIEM for retention and correlation.
- Monitor authentication events (Event IDs 4624, 4672) on hosts running Windows Admin Center to detect unusual local logons preceding privileged activity.
- Track file and registry changes under Windows Admin Center installation paths to identify tampering or persistence attempts.
How to Mitigate CVE-2026-58631
Immediate Actions Required
- Apply the Microsoft security update referenced in the Microsoft Security Update Guide for CVE-2026-58631 to all Windows Admin Center gateway installations.
- Inventory every host running Windows Admin Center, including ad-hoc administrator workstations, and confirm patch status.
- Restrict local logon rights on Windows Admin Center gateway servers to a minimal set of trusted administrators.
Patch Information
Microsoft has issued a fix through the July 2026 update cycle. Refer to the Microsoft Security Update Guide for the affected build numbers and download links. Update all gateway instances before restoring normal administrative use.
Workarounds
- Limit interactive and remote logon to Windows Admin Center hosts to Tier-0 administrators until patching is complete.
- Deploy Windows Admin Center on dedicated management servers rather than shared multi-user systems to reduce local attacker exposure.
- Enforce role-based access controls and review Windows Admin Center role assignments to remove unnecessary user access.
# Verify Windows Admin Center version on a gateway host (PowerShell)
Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\ServerManagementGateway" |
Select-Object InstalledVersion, InstallPath
# List local users with logon rights to the gateway host
whoami /priv
net localgroup "Remote Desktop Users"
net localgroup "Administrators"
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

