Exploiting SharePoint: CVE-2026-55040 and CVE-2026-63520 RCE chain (VulnCheck, Aug 24)
Summary
On August 24, 2026, VulnCheck's Initial Access Intelligence team published a complete analysis of an unauthenticated remote-code-execution chain against Microsoft SharePoint Server that combines two recently disclosed flaws discovered by Rapid7's Stephen Fewer:
- CVE-2026-55040 — JWT token authentication bypass (weak authentication, CWE-1390; added to CISA KEV August 18, 2026, BOD 26-04 due 2026-08-21);
- CVE-2026-63520 — unsafe .NET type instantiation in Business Connectivity Services (fixed in August 2026 cumulative update KB5002893).
Used together, a remote attacker with no credentials can forge a JWT, harvest a FormDigestValue from a privileged endpoint, submit a malicious BDC model (BDCM) to the Business Data Catalog, and trigger Activator.CreateInstance on an attacker-chosen .NET type — unauthenticated RCE on the SharePoint server. Rapid7 published a PoC for CVE-2026-55040 on August 11, 2026; honeypot providers immediately reported in-the-wild exploitation, VulnCheck KEV listed it on August 12, and CISA KEV on August 18. VulnCheck Target Intelligence counts at least 8,500 SharePoint servers on the open internet after deduplicating honeypots. The exploit, a version scanner, Suricata/Snort rules, PCAPs, and ASM queries are available to VulnCheck Initial Access Intelligence customers.
Tags
- ops
- operations
- Microsoft
- SharePoint
- SharePoint Server
- CVE-2026-55040
- CVE-2026-63520
- JWT
- JSON Web Token
- token forgery
- FormDigestValue
- BCS
- BDC
- BusinessDataCatalog
- BDCM
- .NET deserialization
- LosFormatter
- TypeConfuseDelegate
- Activator.CreateInstance
- BCSAllowedTypeNames
- KB5002893
- unauthenticated RCE
- CISA KEV
- active exploitation
- honeypot
- Rapid7
- VulnCheck
- exploit chain
- initial access
The chain
VulnCheck's dissection shows the full path from unauthenticated attacker to code execution:
- CVE-2026-55040 (auth bypass): improper validation in SharePoint's JWT handling (
SPJsonWebSecurityTokenHandlerV2) lets an unauthenticated attacker forge a JWT for a privileged SharePoint user — the trusted identity's SID or user principal name must be known/configured. With that forged token the attacker retrieves aFormDigestValuefrom a privileged endpoint. - Privileged access: the forged JWT plus the form digest grants authenticated access in "useful" ways, including modifying the application through Business Connectivity Services (BCS) / the Business Data Catalog (BDC) layer.
- CVE-2026-63520 (the RCE sink): unsafe .NET type instantiation in BCS. The August 2026 cumulative update (KB5002893) adds
ValidateSafeBcsTypeinMicrosoft.SharePoint/Microsoft/SharePoint/BusinessData/Infrastructure/DotNetTypeReflector.cs: only types in the farm'sBCSAllowedTypeNamesallow list may be used by BCS models; everything else is blocked. The function is called in at least 16 locations in the patched image. - Exploitation vehicle: a BDC model (BDCM) uploaded to
BusinessDataMetadataCatalogwhoseLobSystem Type="DotNetAssembly"defines an entity with aClassproperty set to an assembly-qualified type and aDeserializeMethod whoseFinderMethodInstance calls it. The most direct "resolve, then create" sink VulnCheck identified isGetEntityObjectinDotNetAssemblyConnectionManager.cs: it reads the entity'sClassproperty, resolves the type, and runsActivator.CreateInstanceon it. - The payload: the BDCM's input parameter carries a LosFormatter /
TypeConfuseDelegategadget as aDefaultValue(base64 .NET object-graph blob in the metadata XML). Querying the external list created by the model (GET /_api/web/lists/getbytitle('<list>')/items) invokes the Finder →Deserialize→ RCE. The public PoC launchescalc.exe; the base64 payload decodes to aSystem.Web.UI.LosFormatter-deserializedTypeConfuseDelegate.
The three observable HTTP stages are: POST /_api/web/GetFolderByServerRelativeUrl('BusinessDataMetadataCatalog')/Files/add(url='...bdcm',overwrite=true) (upload BDCM, with forged Authorization: Bearer + X-Requestdigest), then a request creating the external list wired to the model, then the GET that detonates it.
Timeline
- August 11, 2026 — Rapid7 (Stephen Fewer) publishes CVE-2026-55040 write-up and PoC; Microsoft ships the August 2026 SharePoint cumulative update (KB5002893) fixing both CVEs.
- August 12, 2026 — honeypot providers report in-the-wild exploitation; VulnCheck adds the flaw to its KEV.
- August 18, 2026 — CISA adds CVE-2026-55040 to KEV (weak authentication, CWE-1390; BOD 26-04 due 2026-08-21; ransomware use recorded as unknown; no actor named).
- August 24, 2026 — VulnCheck publishes the full RCE-chain analysis (CVE-2026-55040 + CVE-2026-63520), exploit, scanner, IDS rules, and PCAPs.
Why the chain matters
CVE-2026-55040 alone is a "prove some impact" auth bypass; it is not enough to demonstrate the criticality of the flaw or build complete protections. The 63520 RCE prong is what turns it into a weapon: the same BDC upload pattern was used in CVE-2023-24955 (code-injection RCE, 2023) and CVE-2019-1257 (code-injection-to-BDC deserialization, 2019) — BDC metadata models have been a recurring SharePoint exploitation sink, and this chain is a modern, unauthenticated variant reaching it through a forged JWT rather than an authenticated session.
Defender priorities
- Apply the August 2026 SharePoint cumulative update (KB5002893) to every farm component and front-end proxy. The
ValidateSafeBcsType/BCSAllowedTypeNamesallow-list fix and the JWT validation fix are in the same update; partial patching (JWT only, or BCS only) leaves either half of the chain live. - Inventory internet-facing SharePoint. At least 8,500 SharePoint servers were visible on the open internet in VulnCheck's Target Intelligence sweep; ASM counts vary wildly. If your SharePoint is reachable without a VPN or IP allow-list, assume it has been scanned by the public PoC and the customer exploit.
- Hunt for BDCM uploads and external-list creation. Look for new files in
BusinessDataMetadataCatalog(any*.bdcmwritten out of band), external-list creation requests (/_api/web/lists/getbytitleagainst freshly created lists withLobSystemInstance/MetadataCatalogFileNameproperties), andDotNetAssembly-typed LobSystems — none of these are normal in most farms. - Watch for
LosFormatterdeserialization and unexpected child processes of the SharePoint application pool (w3wp.exespawningcmd.exe/powershell.exe/calc.exefrom the IIS worker) — the PoC detonation shape is a deserialization-drivenActivator.CreateInstanceonSystem.Web.UI.LosFormatterfollowed by process spawn. - Correlate the auth-bypass half separately. Forged-JWT traffic to privileged endpoints (requests carrying
Authorization: BearerJWTs withX-Requestdigestdigests from the same source, unusualSPJsonWebSecurityTokenHandlerV2behavior, access as privileged accounts without corresponding logons) can occur before or without the full RCE chain. - Patch the surrounding KEV context too. This is one of several active SharePoint exploitation stories on this wiki (see related pages below); the August 18 KEV addition and the now-public unauthenticated RCE chain make SharePoint farms a top-tier patch-now target.
- Preserve evidence before destructive cleanup — application, access, and IIS logs while the farm is still usable; CISA's BOD 26-04 forensics-triage requirement applies to federal systems.
Indicators
- File: new
*.bdcmfiles in the SharePointBusinessDataMetadataCatalogdirectory; external-list XML withLobSystem Type="DotNetAssembly"andMethod Name="Deserialize". - Request:
POST /_api/web/GetFolderByServerRelativeUrl('BusinessDataMetadataCatalog')/Files/add(url=...bdcm,overwrite=true)with a forgedBearerJWT andX-Requestdigest. - Payload: base64 .NET object-graph (LosFormatter /
TypeConfuseDelegate) embedded in BDCMDefaultValueXML. - Process:
w3wp.exe→cmd.exe/powershell.exe/ arbitrary child process from the SharePoint app pool. - Version boundary: SharePoint Server builds before the August 2026 cumulative update (KB5002893) are exploitable;
ValidateSafeBcsTypeis present in patchedDotNetTypeReflector.cs.
Related pages
- CISA KEV August 17–18 additions (includes CVE-2026-55040 KEV entry)
- Microsoft SharePoint CVE-2026-45659 RCE exploitation
- CISA KEV: Microsoft SharePoint / ADFS, FortiSandbox, and SonicWall SMA1000 July 2026 additions
- CISA KEV: Check Point SmartConsole and Microsoft SharePoint July 22, 2026 additions
- Storm-2603 parallel SharePoint ransomware intrusion
Sources
- VulnCheck (Jonathan Peterson): Exploiting SharePoint: CVE-2026-55040 and CVE-2026-63520 RCE Chain (August 24, 2026)
- CISA: Known Exploited Vulnerabilities Catalog — CVE-2026-55040 entry
- Microsoft: KB5002893 — August 2026 SharePoint cumulative update
- Rapid7: CVE-2026-55040 disclosure and PoC (August 11, 2026)
- NVD: CVE-2026-55040, CVE-2026-63520