Windows Admin Center – Privilege Escalation Vulnerability
CVE ID: CVE-2026-26119
Product: Microsoft Windows Admin Center (WAC)
Vulnerability Type: Improper Authentication / Privilege Escalation
CWE: CWE-287 – Improper Authentication
CVSS v3.1 Base Score: 8.8 (High)
Attack Vector: Network
Attack Complexity: Low
Privileges Required: Low
User Interaction: None
Scope: Unchanged
Confidentiality Impact: High
Integrity Impact: High
Availability Impact: High
Exploitability: Likely in enterprise environments where WAC is exposed internally
Public Exploit Availability: No confirmed public exploit at this time
In-the-Wild Exploitation: No confirmed large-scale exploitation reported as of publication
Affected Component
The issue affects Windows Admin Center (WAC) installations acting as gateway servers. Environments where WAC is used to centrally manage servers, clusters, Hyper-V hosts, or Azure-integrated systems are primarily at risk.
Both domain-joined gateway deployments and standalone gateway configurations may be impacted depending on version and configuration.
Technical Description
CVE-2026-26119 results from improper enforcement of authentication and authorization controls inside Windows Admin Center. Certain management operations performed by the gateway service do not correctly validate privilege boundaries when processing authenticated requests.
It was observed that a user with legitimate but limited access to the WAC interface could trigger backend operations that execute with elevated privileges under the gateway service account context. Because the WAC gateway typically runs with high privileges (often LocalSystem or a privileged service account), improper validation allows privilege escalation on the gateway host.
The vulnerability does not require user interaction and does not require administrator-level credentials. An authenticated low-privileged user account is sufficient.
Root Cause Analysis
The vulnerability appears to stem from one or more of the following design flaws:
- Insufficient validation of authorization context during backend API execution
- Trust boundary violations between frontend authentication and backend management modules
- Insecure handling of extension installation or management module invocation
- Improper verification of actions executed under gateway service identity
In effect, authentication is performed, but authorization checks are not consistently enforced before privileged actions are executed.
Attack Scenario
A realistic attack chain would typically proceed as follows:
- A low-privileged domain or local user account gains access to the Windows Admin Center portal.
- The attacker enumerates accessible management modules and identifies operations processed by the gateway backend.
- A crafted request is issued to a management endpoint that fails to properly enforce role validation.
- The backend service executes the request under elevated service privileges.
- The attacker achieves privilege escalation on the WAC gateway host.
- Lateral movement may follow using the gateway’s management capabilities.
Once SYSTEM or administrative context is achieved on the gateway, the attacker may:
- Create new administrative users
- Install services
- Deploy malicious extensions
- Push commands to managed nodes
- Modify cluster configurations
- Extract credentials stored on the gateway
Because WAC is often a centralized management surface, compromise of the gateway significantly increases blast radius.
Proof-of-Concept (Educational)
There is currently no confirmed publicly released exploit. However, exploitation could theoretically involve:
- Intercepting and modifying authenticated management API calls
- Replaying privileged module invocation requests
- Triggering extension installation workflows with manipulated parameters
- Exploiting weak authorization validation on backend PowerShell execution routines
A theoretical PoC structure (for educational analysis only) would include:
- Authenticated session token acquisition
- Manipulated REST API request targeting privileged module
- Execution confirmation via elevated command execution
Exploitation Impact
If successfully exploited, the following impacts may occur:
- Full compromise of the Windows Admin Center gateway
- Privilege escalation to LocalSystem
- Lateral movement to all managed servers
- Cluster-wide compromise
- Hyper-V host takeover
- Persistence via scheduled tasks or services
- Credential harvesting
In environments where WAC manages domain controllers or production clusters, risk severity is amplified.
Indicators of Compromise
The following behaviors may indicate attempted exploitation:
- Unexpected module execution in WAC logs
- Privileged PowerShell commands executed by WAC service
- Extension installation without change control
- New administrative accounts created on gateway host
- Service creation events tied to WAC process
- Abnormal API request patterns to WAC backend
Log Sources for Detection
The following log sources should be monitored:
- Windows Admin Center operational logs
- Windows Security Event Log
- Windows Application Log
- Sysmon (if deployed)
- IIS logs (if WAC deployed behind IIS)
- Endpoint Detection and Response telemetry
- File Integrity Monitoring logs on WAC directories
Detection Rules
Splunk Query – Suspicious Privileged Execution from WAC
index=wineventlog
(EventCode=4688 OR EventCode=4672 OR EventCode=7045)
| where ParentProcessName="*Windows Admin Center*"
| table _time, host, user, ParentProcessName, NewProcessName, CommandLine
Splunk Query – New Service Creation Potentially Linked to WAC
index=wineventlog EventCode=7045
| search ServiceFileName="*AdminCenter*" OR ServiceFileName="*SMEGateway*"
| table _time, host, ServiceName, ServiceFileName, AccountName
Microsoft Sentinel / KQL – Suspicious Process Spawned by WAC
SecurityEvent
| where EventID == 4688
| where ParentProcessName contains "SMEGateway"
| where ProcessCommandLine contains "powershell"
or ProcessCommandLine contains "cmd.exe"
| project TimeGenerated, Computer, Account, ProcessCommandLine
Microsoft Sentinel / KQL – Privilege Escalation Indicators
SecurityEvent
| where EventID == 4672
| where ProcessName contains "SMEGateway"
| project TimeGenerated, Computer, SubjectUserName, Privileges
Sysmon Detection – Suspicious Child Process
EventID=1
ParentImage endswith "SMEGateway.exe"
Image endswith "powershell.exe" OR
Image endswith "cmd.exe" OR
Image endswith "sc.exe"
Defensive Recommendations
Until patching is confirmed:
- Restrict network access to WAC gateway (internal management subnet only)
- Enforce least privilege on WAC users
- Remove unused extensions
- Apply strict ACLs on WAC installation directories
- Enable detailed PowerShell logging
- Enable command-line process auditing
- Deploy file integrity monitoring
Remediation
Immediate upgrade to the patched version of Windows Admin Center is strongly recommended.
Official Microsoft Update Link:
https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-26119
After patching:
- Restart WAC gateway service
- Validate version number
- Review logs for prior suspicious activity
- Rotate administrative credentials if compromise is suspected
Risk Assessment
Because Windows Admin Center serves as a centralized management interface, compromise of the gateway may result in enterprise-wide impact. The CVSS score of 8.8 reflects both ease of exploitation and severity of potential damage.
Even without public exploit code, the vulnerability presents significant risk in environments where:
- WAC is broadly accessible
- Multiple administrators use delegated roles
- Management networks are flat
- Gateway servers are not hardened
Timely patching and monitoring are strongly advised.
