HomeNewsletterCommunityMVP FeedToolsArchiveBlogToday's NewsAboutServicesQuick Links Subscribe free
← Back to Blog
Security CVE-2026-81963Patch TuesdaySecurityWindows 11Elevation of PrivilegeKB5124008September 2026

CVE-2026-81963: The September 2026 Windows Update Stack Vulnerability Already Being Exploited

IA
Imran Awan
11 September 2026
The short version

CVE-2026-81963 is a Windows Update Stack elevation of privilege vulnerability patched in the September 2026 Patch Tuesday cycle. It is rated CVSS 7.8 and Microsoft has confirmed it is already being exploited in the real world. A standard user account with no administrator rights and no user interaction required can exploit it to gain full SYSTEM-level control of the device. The fix is included in KB5124008 (Windows 11 24H2 and 25H2) and the equivalent updates for 23H2, 26H1, and Windows Server 2025.

⚠ Actively exploited — do not defer without a plan: Microsoft’s Threat Intelligence Centre (MSTIC) confirmed exploitation in the wild at the time of release on 8 September 2026. This is not a theoretical risk. The exploit code maturity is rated Functional, meaning working exploit code exists and has been used against real targets. Leaving devices unpatched increases the window for privilege escalation attacks on your estate.

What is CVE-2026-81963

CVE-2026-81963 is a flaw in the Windows Update Stack — the component responsible for downloading, verifying, and applying Windows updates on the device. The weakness is a link-following vulnerability (formally classified as CWE-59: Improper Link Resolution Before File Access).

In a link-following attack, an attacker with a low-privilege local account manipulates how the Windows Update Stack resolves file paths during an update operation. By placing a symbolic link at precisely the right location before the Update Stack accesses a file, the attacker redirects a file write operation from the Update Stack into a location that only SYSTEM should be able to modify. The result is privilege escalation from a standard user account to SYSTEM — the highest privilege level on a Windows device, above even a local administrator.

The vulnerability requires no interaction from another user on the machine, and no unusual configuration. It works on a standard domain-joined or Entra-joined corporate workstation running an affected build of Windows 11.

CVE ID
CVE-2026-81963
Type
Elevation of Privilege
Severity
Important (7.8 / 7.2)
Exploited in wild
Yes — confirmed
Attack Vector
Local
Privileges Required
Low
User Interaction
None
Privilege gained
SYSTEM
Exploit maturity
Functional
Publicly disclosed
No
Released
8 Sep 2026
Discovered by
Romain DEPERNE & MSTIC
📋 What SYSTEM access means in practice: SYSTEM is not just “administrator.” It is the account that Windows itself runs under for core operating system functions. An attacker who reaches SYSTEM can read and write any file on the device regardless of permissions, modify or disable security software, extract credentials from LSASS memory, install persistent backdoors, and move laterally across the network using the machine’s own identity. A standard user with no IT-assigned privileges can reach this level by exploiting CVE-2026-81963.

Which devices are affected

The vulnerability affects Windows 11 and Windows Server 2025. Windows 10 and Windows Server 2019 and 2022 are not listed as affected by this specific CVE. The fix ships in the September 2026 cumulative update for each affected version.

Windows versionFixing KBBuild after fixArchitecture
Windows 11 25H2KB512400810.0.26200.9445x64 / ARM64
Windows 11 24H2KB512400810.0.26100.9445x64 / ARM64
Windows 11 23H2KB512288010.0.22631.7582x64 / ARM64
Windows 11 26H1KB512401210.0.28000.2954x64 / ARM64
Windows Server 2025KB512287110.0.26100.33438x64 (incl. Server Core)

All five updates were released on 8 September 2026 as part of the September Patch Tuesday cycle. The fix is included in the full cumulative update for each version — there is no separate security-only package that patches CVE-2026-81963 in isolation.

How to check your exposure

The fastest way to confirm whether a device has received the fix is to check its current OS build number. Each fixed version has a specific build number listed in the table above. Run the following from an elevated or standard PowerShell session:

PowerShell — Check current OS build
# Returns the full build number including the update revision (UBR) $ver = Get-ItemProperty "HKLM:SOFTWAREMicrosoftWindows NTCurrentVersion" "$($ver.CurrentBuild).$($ver.UBR)" # Compare against the fixed builds: # Windows 11 25H2: 26200.9445 or higher = patched # Windows 11 24H2: 26100.9445 or higher = patched # Windows 11 23H2: 22631.7582 or higher = patched # Windows 11 26H1: 28000.2954 or higher = patched # Windows Server 2025: 26100.33438 or higher = patched

You can also verify directly by checking whether the cumulative update KB is recorded as installed. For Windows 11 24H2 and 25H2 devices, which share the KB5124008 package:

PowerShell — Confirm KB5124008 is installed (24H2 and 25H2)
# Returns the hotfix record if installed; returns nothing if not installed Get-HotFix -Id KB5124008 # For 23H2 Get-HotFix -Id KB5122880 # For 26H1 Get-HotFix -Id KB5124012

For fleet-wide visibility across Intune-managed devices, filter on OS build version in the Intune device list or use a PowerShell remediation script to report compliance state across your estate.

Deployment guidance

The confirmed exploitation of CVE-2026-81963 means this update cannot simply be deferred. At the same time, there are separate community-reported issues with KB5124008 in environments with on-premises Active Directory domain controllers running Windows Server 2019 or some configurations of Server 2022. The right deployment approach depends on how your devices are joined.

Entra ID-joined devices with no on-premises Active Directory dependency — expedited phased rollout:

For modern Windows 11 devices managed entirely through Microsoft Entra ID and Microsoft Intune — with no on-premises domain controller in the authentication path — the correct approach is to continue deploying the September update, but in controlled stages rather than all at once.

✅ Recommended phased rollout for Entra-only devices:
  1. Deploy KB5124008 to a small pilot group first — IT team, QA, a handful of volunteer users from each department.
  2. Validate over 24–48 hours: confirm devices enrol, authenticate, receive policies, and operate normally.
  3. If the pilot is clean, promote to a broader group — typically 10–20 % of the production estate.
  4. If that wave is also healthy, promote to the remainder of production.
This is what an expedited phased rollout means in practice: faster than a standard monthly cadence, still controlled rather than a single push to all devices. The active exploitation of CVE-2026-81963 justifies moving faster than normal; phasing still protects against unexpected regressions.

Windows 11 25H2 devices joined to on-premises Active Directory — additional caution required:

⚠ Gotcha for hybrid and on-premises AD environments: There are separate community-reported authentication and domain trust failures on Windows 11 25H2 devices after KB5124008 is applied in environments where domain controllers are running Windows Server 2019 or some configurations of Windows Server 2022. If your Windows 11 25H2 devices authenticate against on-premises Active Directory, keep those devices in a small validated test group before wider rollout. Confirm that domain authentication, Group Policy application, and secure channel health all pass before promoting to production. The security risk from CVE-2026-81963 is real — but a broken domain trust affects every user on the affected devices immediately. Test first, then expand.

The framing for management conversations: “This September update fixes a vulnerability already being exploited by attackers to take full control of Windows devices. We are deploying it, but in controlled pilot groups. Devices that use traditional on-premises Active Directory authentication need additional validation before we push the update widely.”

References

All CVE details sourced from the Microsoft Security Response Centre. Last reviewed: 11 September 2026.

Was this post helpful?
React below — no account needed
Share this post
LinkedIn X / Twitter Reddit Bluesky

More from EndpointWeekly

Security
ShieldCrash: What Admins Need to Know About the Microsoft…
ShieldBreak (CVE-2026-69414) is patched in September 2026. ShieldCrash is a new…
Security
Windows August 2026 Patch Tuesday: SharePoint Unauthenticated…
A no-auth SharePoint RCE chain, a Windows kernel privesc, and 200-300+ CVEs land on 12…
Security
Windows 11 June 2026 Security Alert: Secure Boot Certificate…
KB5094126 delivers two urgent security items: automatic migration from expiring 2011…