← Back to Feed CACHED · 2026-08-16 14:52:11 · CACHE_KEY CVE-2026-47301
CVE-2026-47301 · CWE-284 · Disclosed 2026-07-14

Improper access control in Microsoft Configuration Manager

ASSESSED — NOISGATE V0.5
Vendor
Reassessed
Verdict:
Do you agree?
01 · The Real Story

Someone left the loading-dock door open at the warehouse that holds the master keys to every office in the building

CVE-2026-47301 is a broken authorization check in Microsoft Configuration Manager's AdminService REST API. SCCM exposes two upload endpoints for console extensions: one enforces role-based access control, the other (the chunked-upload path) does not. Any authenticated Active Directory domain user — zero SCCM roles required — can submit a malicious CAB archive to the unprotected endpoint. This is link 1 in a four-link chain demonstrated by XM Cyber researcher Omri Baso: authorization bypass → CabSlip path traversal → weak code-signing validation (defeated with a $58 Certum certificate) → unsigned DLL load in the SMS Executive service. The chain ends in NT AUTHORITY\SYSTEM on the primary site server, which has push-execution authority over every managed Windows client. Affected versions include ConfigMgr current branch 2503, 2509, and 2603.

Microsoft rated this 8.8 HIGH — and that is too conservative. The vendor score treats the vulnerability as an isolated elevation-of-privilege bug. It does not account for the fact that the affected component is an endpoint fleet management platform: SYSTEM on the site server is not a single-host event, it is *fleet compromise*. The remaining three chain links (CabSlip, signature bypass, DLL sideload) are unpatched until ConfigMgr 2609 in October 2026, meaning the full chain is currently viable. Any organization running an unpatched SCCM site server with domain-user-reachable AdminService is one HTTP POST away from losing control of every managed endpoint.

"Any domain user to SYSTEM on the SCCM site server — your fleet management tool becomes the attacker's C2."
02 · The Attack Path

5 steps from start to impact.

STEP 01

Authenticate as any AD domain user

The attacker needs only a standard Active Directory domain account — no SCCM administrative roles, no Operations Administrator, no Security scope. The AdminService REST API authenticates via Windows Integrated Authentication (Kerberos/NTLM). Any user who can reach the site server on TCP 443 passes authentication.
Conditions required:
  • Valid Active Directory domain credentials (any privilege level)
  • Network reachability to the SCCM AdminService endpoint on TCP 443
Where this breaks in practice:
  • AdminService is typically bound to the site server's FQDN and not exposed to the internet
  • Organizations with strict network segmentation may block non-admin subnets from reaching the site server
Detection/coverage: Monitor AdminService.log for upload requests from non-admin accounts. EDR telemetry on the site server should flag unusual HTTPS POST activity to /AdminService/v1.0/ endpoints.
STEP 02

Upload malicious CAB via chunked-upload bypass

The attacker sends a crafted CAB archive to the chunked-upload endpoint, which lacks the RBAC permission check present on the standard extension-upload path. The server accepts and stores the archive without verifying the caller holds any SCCM role. This is the vulnerability tracked as CVE-2026-47301.
Conditions required:
  • Step 1 completed (authenticated session to AdminService)
Where this breaks in practice:
  • July 2026 patch (KB 38232642) closes this specific authorization gap
  • Without the patch, no friction — the endpoint is completely unprotected
Detection/coverage: Look for System.IO.DirectoryNotFoundException followed by HTTP 500 in AdminService.log. SIEM rules can alert on extension-upload activity outside change windows.
STEP 03

CabSlip path traversal escapes extraction directory

The CAB archive contains entries with relative path components (../) that cause the extraction routine to write files outside the intended temporary directory. The attacker places a malicious DLL (adsource.dll) into the Configuration Manager installation directory. This link is unpatched as of August 2026.
Conditions required:
  • Step 2 completed (malicious CAB accepted by server)
  • Site server file system allows write to ConfigMgr install directory from the service account context
Where this breaks in practice:
  • Application whitelisting (AppLocker/WDAC) on the site server could block the dropped DLL if properly configured — but most SCCM site servers do not run WDAC
  • File integrity monitoring (FIM) on the ConfigMgr install directory would detect the write
Detection/coverage: FIM alerts on unexpected file creation in the SCCM install directory. Sysmon Event ID 11 (FileCreate) for adsource.dll.
STEP 04

Weak code-signing validation with $58 certificate

SCCM validates that the console extension is signed but does not verify that the signing certificate is issued by Microsoft or belongs to the target organization. Any structurally valid, non-expired, non-revoked code-signing certificate passes validation. Omri Baso demonstrated this with a Certum Open Source Developer Certificate costing approximately $58. This link is unpatched.
Conditions required:
  • Attacker possesses any valid code-signing certificate
Where this breaks in practice:
  • Acquiring a code-signing certificate requires identity verification with the CA — adds cost and attribution risk
  • Some CAs have improved vetting, but $58 certificates remain readily available
Detection/coverage: Log analysis of certificate subjects used in extension signing — alert on any non-organizational certificate.
STEP 05

SMS Executive loads unsigned DLL → SYSTEM

The SMS Executive service (smsexec.exe), running as NT AUTHORITY\SYSTEM, loads adsource.dll from the ConfigMgr installation directory without verifying its digital signature. The attacker's DLL executes arbitrary code as SYSTEM on the primary site server. From this position, the attacker can use SCCM's built-in client-push, script execution, and application deployment features to execute commands on every managed endpoint. This link is unpatched.
Conditions required:
  • Steps 3 and 4 completed (malicious DLL in place, signed with any valid certificate)
  • SMS Executive service restart or scheduled load of the DLL
Where this breaks in practice:
  • If WDAC is enforced on the site server with a Microsoft-only signing policy, the DLL load would be blocked
  • EDR on the site server should detect anomalous DLL loading by smsexec.exe
Detection/coverage: EDR detection of unsigned/anomalous DLL loads by smsexec.exe. Sysmon Event ID 7 (ImageLoaded) with signature verification. Carbon Black, CrowdStrike, and Defender for Endpoint have detections for DLL sideloading in privileged services.
03 · Intelligence Metadata

The supporting signals.

In-the-Wild ExploitationNo confirmed in-the-wild exploitation as of 2026-08-16. Not listed in CISA KEV. XM Cyber's Omri Baso has demonstrated the full four-link chain in a lab environment.
Proof of ConceptNo public PoC repository. Omri Baso (XM Cyber) presented the full chain privately to Microsoft and publicly described it in media coverage. The technique is well-documented enough for skilled adversaries to reproduce.
EPSS Score0.00537 (approximately 80th percentile) — low predicted exploitation probability, but EPSS does not account for chain composition or blast radius.
KEV StatusNot listed as of 2026-08-16. No CISA deadline.
CVSS VectorCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H — Network-accessible, low complexity, low privileges required, no user interaction. Scope is Unchanged (vendor did not model the fleet-compromise blast radius).
Affected VersionsMicrosoft Configuration Manager current branch: 2503, 2509, 2603. All current branch installations with AdminService enabled (default).
Fixed VersionCVE-2026-47301 (link 1 only): KB 38232642, included in ConfigMgr 2509 UR2 (KB 37864969). Console version 5.2509.1036.1700, Client 5.0.9141.1032. Links 2–4 remain unpatched until ConfigMgr 2609 (planned October 2026).
Scanning / ExposureSCCM AdminService is almost exclusively internal-facing (TCP 443 on site server). Shodan/Censys scans show negligible internet exposure. However, the attack is internal — any domain-joined workstation with network path to the site server is a viable launch point.
Disclosure Date2026-07-14 (Microsoft Patch Tuesday). XM Cyber coordinated disclosure.
Researcher / OrganizationOmri Baso, XM Cyber. Four-link chain documented in coordinated disclosure with Microsoft.
04 · The Call

noisgate verdict.

Final Verdict
UPGRADED to CRITICAL (9.2/10)

The single most decisive factor is the role multiplier: SCCM is canonically a fleet-management platform — every installation IS the high-value role by definition, and the documented chain ends in SYSTEM on the site server with push-execution authority over every managed Windows endpoint, making the blast radius fleet-scale. Three of the four chain links remain unpatched until October 2026, meaning the full chain from any-domain-user to fleet compromise is currently viable against unpatched site servers.

HIGH Vulnerability existence and attack chain mechanics (confirmed by Microsoft patch and XM Cyber disclosure)
HIGH Blast radius assessment (SCCM site server SYSTEM = fleet compromise is well-documented)
MEDIUM Exploitation timeline (no public PoC yet, but chain is well-described in media; reproduction by skilled adversaries is likely within weeks)

Why this verdict

  • Authorization bypass is zero-friction for insiders. Any authenticated AD domain user — including a compromised workstation, a contractor account, or a helpdesk operator — can reach the vulnerable endpoint. No SCCM roles, no special group memberships, no user interaction required. The PR:L rating understates how trivially this prerequisite is met in enterprise environments.
  • Role multiplier: SCCM site server is a fleet-management platform; chain ends in fleet compromise. The affected component is not a workstation utility or a line-of-business app. Every SCCM installation is, by definition, a high-value asset: the site server holds push-execution authority over every managed Windows endpoint. SYSTEM on the site server = arbitrary code execution on the entire managed fleet. This is analogous to compromising a domain controller in blast-radius terms. ≥95% of ConfigMgr installs occupy the high-value role — the product exists solely to manage fleets. Verdict floor is CRITICAL.
  • Three of four chain links are unpatched. The July 2026 patch closes only the entry point (CVE-2026-47301). CabSlip path traversal, weak certificate validation, and unsigned DLL loading remain exploitable until ConfigMgr 2609 in October. Even after patching CVE-2026-47301, the residual attack surface means any alternative entry point discovered in the interim re-enables the full chain.
  • Low EPSS and no KEV do not override blast radius. EPSS of 0.00537 reflects low current exploitation probability, which provides some time cushion. However, the chain is fully documented in public media coverage, and the $58 certificate trick dramatically lowers the barrier to reproduction. The absence of a public PoC repo is a temporary condition, not a structural defense.

Why not higher?

A 9.2 rather than 10.0 because the chain requires four links (increasing complexity relative to a single-step RCE), the entry point requires authenticated domain access (not unauthenticated), and there is no confirmed in-the-wild exploitation or public PoC as of this assessment. The July patch for CVE-2026-47301 does close the known entry point, reducing immediate risk for organizations that have applied it.

Why not lower?

The affected component is canonically a fleet-management platform where ≥95% of installations occupy the high-value role by definition. The chain ends in SYSTEM on the site server with push-execution authority over the entire managed fleet — this is fleet-scale blast radius, not single-host. Requiring only any AD domain user credential is not meaningful friction in post-initial-access scenarios. Three of four chain links remain unpatched, and the technique is publicly described in enough detail for skilled adversaries to reproduce. Downgrading below CRITICAL would require evidence that the AdminService endpoint is unreachable from the general domain-user population, which contradicts its default configuration.

05 · Compensating Control

What to do — in priority order.

  1. Restrict AdminService network access immediately — Deploy firewall rules or NSG policies limiting TCP 443 on the SCCM site server to designated administrative subnets only. This eliminates the most accessible attack surface by preventing arbitrary domain users from reaching the vulnerable endpoint. Deploy within 3 days per noisgate mitigation SLA for CRITICAL findings.
  2. Apply KB 38232642 (CVE-2026-47301 fix) — Install the July 2026 hotfix via ConfigMgr 2509 Update Rollup 2 (KB 37864969) to close the authorization bypass entry point. This does NOT fix links 2–4 but eliminates the known path to trigger them. Deploy within 3 days.
  3. Enable WDAC on the site server with a Microsoft-only signing policy — Windows Defender Application Control in enforced mode with a policy restricting DLL loads to Microsoft-signed binaries would block the unsigned/third-party-signed DLL sideload (link 4), breaking the chain even if links 1–3 are exploited. This is the strongest compensating control for the unpatched links. Deploy within 3 days.
  4. Deploy file integrity monitoring on the ConfigMgr install directory — Configure FIM (via Defender for Endpoint, OSSEC, Tripwire, or equivalent) to alert on any file creation or modification in the SCCM installation directory, particularly adsource.dll. This provides detection coverage for link 3 (CabSlip file write).
  5. Audit AdminService.log for anomalous upload activity — Create SIEM detection rules for extension-upload requests from non-admin accounts and for System.IO.DirectoryNotFoundException + HTTP 500 patterns in AdminService.log. Forward these logs to your SIEM immediately if not already collected.
What doesn't work
  • Standard SCCM RBAC hardening does not help — the vulnerability exists precisely because the chunked-upload endpoint bypasses RBAC entirely. Tightening SCCM security roles has no effect on the vulnerable code path.
  • Network-level IDS/IPS signatures are unlikely to detect this — the malicious payload is a CAB file uploaded over HTTPS to a legitimate API endpoint. Without TLS inspection and CAB-aware content inspection, network security tools will not flag the traffic.
  • Patching managed clients does not reduce risk — the vulnerability is in the site server infrastructure, not the SCCM client agent. Patching endpoints managed by SCCM does not address this flaw.
06 · Verification

Crowdsourced verification payload.

Run this script on the SCCM primary site server as a local administrator. It checks whether the CVE-2026-47301 hotfix (KB 38232642) has been applied by inspecting the ConfigMgr console version. Example: .\Check-CVE202647301.ps1

noisgate-verify.ps1
POWERSHELLREAD-ONLYSAFE
#Requires -RunAsAdministrator
# Check-CVE202647301.ps1
# Verifies whether KB 38232642 (CVE-2026-47301 fix) is applied
# Run on the SCCM primary site server as local admin
# Exit codes: 0 = PATCHED, 1 = VULNERABLE, 2 = UNKNOWN

$ErrorActionPreference = 'Stop'

try {
    # Method 1: Check console version via WMI
    $siteStatus = Get-WmiObject -Namespace 'root\SMS' -Class 'SMS_ProviderLocation' -ErrorAction SilentlyContinue
    if (-not $siteStatus) {
        Write-Host 'UNKNOWN - Unable to query SMS WMI namespace. Is this an SCCM site server?'
        exit 2
    }

    $siteCode = ($siteStatus | Select-Object -First 1).SiteCode
    $namespace = "root\SMS\site_$siteCode"

    # Check installed hotfixes
    $hotfix = Get-WmiObject -Namespace $namespace -Query "SELECT * FROM SMS_CM_UpdatePackages WHERE Name LIKE '%38232642%' OR Name LIKE '%37864969%'" -ErrorAction SilentlyContinue

    if ($hotfix) {
        $installed = $hotfix | Where-Object { $_.State -eq 196612 }  # State 196612 = Installed
        if ($installed) {
            Write-Host 'PATCHED - KB 38232642 / KB 37864969 (CVE-2026-47301 fix) is installed.'
            exit 0
        } else {
            Write-Host "VULNERABLE - Hotfix found but state is: $($hotfix.State). Not fully installed."
            exit 1
        }
    }

    # Method 2: Fallback - check console DLL version
    $consolePath = Join-Path $env:SMS_ADMIN_UI_PATH '..\Microsoft.ConfigurationManagement.exe'
    if (Test-Path $consolePath) {
        $ver = (Get-Item $consolePath).VersionInfo.FileVersion
        $parsed = [version]$ver
        # Fixed version: 5.2509.1036.1700 or later
        $fixedVer = [version]'5.2509.1036.1700'
        if ($parsed -ge $fixedVer) {
            Write-Host "PATCHED - Console version $ver meets or exceeds fixed version $fixedVer."
            exit 0
        } else {
            Write-Host "VULNERABLE - Console version $ver is below fixed version $fixedVer."
            exit 1
        }
    }

    Write-Host 'UNKNOWN - Could not determine patch status via WMI or console version.'
    exit 2

} catch {
    Write-Host "UNKNOWN - Error during check: $_"
    exit 2
}
07 · Bottom Line

If you remember one thing.

TL;DR
This is a Monday-morning-emergency item. CVE-2026-47301 is the entry point to a four-link chain that gives any domain user SYSTEM on your SCCM site server — and from there, push-execution authority over your entire managed fleet. The July 2026 patch (KB 38232642 / KB 37864969) closes the entry point but three downstream links remain unpatched until October. Per the noisgate mitigation SLA for CRITICAL findings, deploy compensating controls within 3 days: restrict AdminService network access to admin-only subnets, apply the July hotfix, and enable WDAC on the site server. The noisgate remediation SLA gives you 90 days for full remediation, but given that links 2–4 won't be patched until ConfigMgr 2609 (October 2026), plan to upgrade to 2609 the week it ships. Until then, the AdminService network restriction and WDAC policy are your safety net. Do not wait.

Sources

  1. Microsoft KB 37864969 – ConfigMgr 2509 Update Rollup 2
  2. CSO Online – It took $58 to break Microsoft's SCCM
  3. SentinelOne Vulnerability Database – CVE-2026-47301
  4. CrowdStrike – July 2026 Patch Tuesday Analysis
  5. Microsoft KB 38232642 – Security update for console extensions
  6. NVD – CVE-2026-47301
  7. TheWindowsUpdate – CVE-2026-47301 Advisory
  8. Qualys – July 2026 Patch Tuesday Review
Peer Review

What defenders are saying.

Submit a review attribution: handle + country only
0 flags selected · stored anonymously
Validation Results

Crowdsourced verification outputs.

Results submitted by users who ran the verification payload against their environment.