Background
Microsoft SharePoint Server is a widely deployed enterprise collaboration platform used for document management, intranet portals, and business workflows across government, financial services, healthcare, and large enterprise environments. It is routinely exposed to internal networks and, in many deployments, partially exposed to the internet for remote worker access.
CVE-2026-56164 is a missing authentication for critical function vulnerability (CWE-306) in SharePoint Server. An unauthenticated attacker with network access to a vulnerable SharePoint installation can trigger a privileged operation without providing any credentials. CISA added this to the Known Exploited Vulnerabilities catalog on July 14, 2026, with a required remediation deadline of July 17 — a compressed three-day window that signals active exploitation.
There is a significant scoring discrepancy between NVD and Microsoft’s own assessment. NVD assigns a CVSS 3.1 base score of 9.8 CRITICAL (AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H). Microsoft’s CNA score is 5.3 MEDIUM, suggesting the vendor believes direct exploitable impact is limited to low-level integrity changes. The three-day KEV deadline implies real-world exploitation overrides Microsoft’s conservative framing.
Technical Mechanism
CWE-306 (Missing Authentication for Critical Function) occurs when functionality that should require authentication is reachable without any authentication check. In SharePoint Server’s case, a request handler in the web application layer processes incoming HTTP requests for a privileged operation without verifying that the caller is authenticated.
The CVSS vector from Microsoft (I:L, no C or A) indicates the directly exploitable surface produces low-integrity modifications — such as writing to or modifying specific SharePoint content or configuration data without authentication. The NVD’s higher assessment (C:H/I:H/A:H) reflects a broader threat model where the authentication bypass is chained with downstream SharePoint functionality to achieve full compromise.
SharePoint privilege escalation vulnerabilities have historically been chained with server-side script execution via SharePoint Features, webparts, or file upload functionality to achieve remote code execution. The unauthenticated access to a privileged endpoint allows an attacker to issue requests processed with elevated context, potentially reaching site collection administration, permission management, or content modification functions.
Real-World Exploitation Evidence
CISA’s three-day remediation deadline is the strongest available public signal that exploitation is active and ongoing. CISA does not impose this urgency on theoretical vulnerabilities — the July 14 KEV addition with a July 17 deadline reflects confirmed in-the-wild exploitation.
SharePoint Server installations are high-value targets for state-sponsored threat actors and ransomware operators. The combination of unauthenticated access and broad network exposure makes this vulnerability attractive for initial access or lateral movement within corporate networks where SharePoint hosts sensitive documents, workflows, and business data. No specific threat actor or campaign has been publicly attributed to this CVE at time of writing.
Impact Assessment
- Unauthenticated privilege escalation on SharePoint Server over the network
- Modification of SharePoint site permissions, content, or configuration without credentials
- Potential chaining with other SharePoint functionality to achieve remote code execution
- High-value data exposure: SharePoint commonly stores confidential documents, HR records, project data, and business intelligence
- Internal-network exploitation path where internet exposure is not present
Affected Versions
| Product | Affected | Fixed | Release Date |
|---|---|---|---|
| Microsoft SharePoint Server 2019 | All builds before July 2026 CU | July 2026 Cumulative Update | July 2026 |
| Microsoft SharePoint Server Subscription Edition | All builds before July 2026 CU | July 2026 Cumulative Update | July 2026 |
| SharePoint Online (Microsoft 365) | Not affected | N/A — cloud-managed | N/A |
Remediation Steps
-
Apply the Microsoft patch immediately. The fix is distributed via the July 2026 Patch Tuesday cumulative update for SharePoint Server. Apply through:
- Microsoft Update Catalog for your SharePoint Server version
- WSUS / SCCM through enterprise update channels
- MSRC advisory at
https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-56164
-
If patching before July 17 is not possible, restrict SharePoint access at the network layer to known internal IP ranges and block all internet-facing access to the SharePoint portal until patching completes.
-
Place SharePoint behind a WAF or reverse proxy that enforces authentication at the perimeter. This reduces exposure but does not address internal-network exploitation vectors.
-
Enable SharePoint audit logging immediately if not already active:
# Enable SharePoint audit logging for site collection
$site = Get-SPSite "https://sharepoint.contoso.com"
$site.Audit.AuditFlags = [Microsoft.SharePoint.SPAuditMaskType]::All
$site.Audit.Update()
-
Monitor for anomalous access — unauthorized changes to site collection permissions, new site collection administrators, or content modifications without corresponding authenticated sessions.
-
Post-patch: Review SharePoint admin audit logs for the period before patching for signs of exploitation.
Detection Guidance
SharePoint ULS Log Analysis
SharePoint Server generates Unified Logging Service (ULS) logs at %CommonProgramFiles%\Microsoft Shared\Web Server Extensions\<version>\LOGS\. Look for requests to privileged endpoints from unauthenticated sessions (no valid claims token or spidentity in request context).
Windows Event Log
Monitor the Application log for SharePoint events in the 5000–5999 EventID range indicating authentication decisions, particularly any where authentication context is null and the operation succeeds.
Microsoft Sentinel Query
SharePointAudit
| where Operation in ("SitePermissionsModified", "AddedToGroup", "FileModified", "SiteCollectionAdminAdded")
| where UserId == "ANONYMOUS LOGON" or isempty(UserId)
| project TimeGenerated, Operation, ObjectId, ClientIP, UserAgent
| order by TimeGenerated desc
Network Detection
- HTTP requests to SharePoint API endpoints (
/_api/,/_layouts/) without valid authentication cookies or headers from external IP ranges - POST requests to SharePoint admin endpoints from IPs with no prior authenticated session history
- Baseline deviation: requests from unknown IP addresses successfully reaching administrative functions (response 200 rather than 401/403)
Indicators of Compromise
No file-based IOCs published at time of writing. Focus on behavioral indicators: unauthenticated requests to privileged endpoints, unexpected permission modifications, new site collection administrators created with no corresponding authenticated session.
Timeline
| Date | Event |
|---|---|
| 2026-07-14 | Microsoft discloses CVE-2026-56164 in Patch Tuesday advisory |
| 2026-07-14 | CISA adds CVE-2026-56164 to Known Exploited Vulnerabilities catalog |
| 2026-07-14 | Patches released for SharePoint Server 2019 and Subscription Edition |
| 2026-07-17 | CISA BOD 26-04 remediation deadline for federal agencies |