9.1
CVSS Critical severity, one of August's worst
0
Credentials required to exploit CVE-2026-55040
3
SharePoint Server versions affected (2016, 2019, SE)
<24h
Time from public PoC to confirmed honeypot attacks

SponsoredHorizon3.ai

Proactive Security for the AI Era

NodeZero continuously and autonomously pentests infrastructure, identity, cloud, and now web applications, chaining weaknesses across every domain the way real attackers do. Every finding ships with replayable proof showing exploitable business impact, not theoretical risk.

See NodeZero WebApp in action

CVE-2026-55040 lets a remote attacker gain administrator access to any on-premises Microsoft SharePoint Server without supplying a single credential, and CISA confirmed exploitation in the wild on August 18, 2026. The vulnerability carries a CVSS score of 9.1 Critical.

The flaw lives in SharePoint Server's JSON Web Token (JWT) validation pipeline. JWT is the mechanism SharePoint uses to verify authenticated session identity in its REST API and web services layer. Researchers at Rapid7 Labs discovered that SharePoint's validation code runs with four security checks disabled simultaneously: issuer validation, audience validation, lifetime enforcement, and signature requirement. With signature checking off, the server accepts tokens signed with the algorithm value 'none,' meaning no cryptographic verification is performed. Any attacker who can identify a SharePoint user's Active Directory SID or UPN can construct a valid-looking token for that user, including a site administrator.

The CVE-2026-55040 SharePoint authentication bypass affects three on-premises server versions: SharePoint Server Subscription Edition, SharePoint Server 2019, and SharePoint Enterprise Server 2016. SharePoint Online is not affected. Microsoft patched the vulnerability in the July 14, 2026 Patch Tuesday cycle. Rapid7 published a full technical writeup and proof-of-concept on August 11. Honeypot operators reported active attacks within hours of that disclosure.

Rapid7 also identified that CVE-2026-55040 chains with a second SharePoint vulnerability to reach unauthenticated remote code execution. That companion flaw was patched in the August 2026 cycle. Organizations that have applied both July and August SharePoint patches are protected against the full attack chain.

How Does the CVE-2026-55040 JWT Authentication Bypass Work?

The SharePoint authentication bypass exploits a configuration failure in the JWT validation library used by SharePoint's internal REST API. JWT is a token format widely used for stateless authentication: a client receives a signed token on login and presents it with each subsequent request, allowing the server to verify identity without querying a database on every call.

CVE-2026-55040 exists because SharePoint's token validation code has four checks disabled at the code level. The fields 'ValidateIssuer,' 'ValidateAudience,' 'ValidateLifetime,' and 'RequireSignedTokens' are all set to false. The 'RequireSignedTokens' flag is the critical one: when it is false, the JWT library accepts tokens with an 'alg' header value of 'none,' which means no signature is attached or verified.

An attacker crafting an exploit sends an HTTP request to any SharePoint REST API endpoint, such as /_api/web/currentuser or /_api/lists, with an Authorization header containing a hand-crafted JWT. The token header specifies 'alg: none'. The token payload contains the UPN or SID of a target user, such as a SharePoint site collection administrator. Because SignedTokens validation is disabled, SharePoint accepts the forged token and grants the attacker full access as the impersonated user.

Rapid7's PoC chained CVE-2026-55040 with a second SharePoint vulnerability to demonstrate unauthenticated remote code execution. The companion RCE bug lets the impersonated administrator create or modify SharePoint content in ways that trigger server-side code execution. The full chain requires no credentials at any stage. This attack pattern is similar to what Decryption Digest covered when JetBrains TeamCity CVE-2026-63077 gave unauthenticated RCE to attackers targeting build pipelines.

Attackers are now using the Rapid7 PoC for CVE-2026-55040 against our SharePoint honeypots.

Defused threat intelligence, August 12, 2026

Which Organizations Are Exposed? Scope and Impact of CVE-2026-55040

Any organization running an internet-facing or network-accessible deployment of SharePoint Server Subscription Edition, SharePoint Server 2019, or SharePoint Enterprise Server 2016 that has not applied July 2026 patches is vulnerable to CVE-2026-55040. SharePoint Server is one of Microsoft's most widely deployed on-premises products, used across financial services, healthcare, government, higher education, legal, and manufacturing sectors for document management, intranet portals, and workflow automation.

The attack requires that the adversary know a valid SharePoint user's identifier, either an Active Directory SID or a User Principal Name. SIDs and UPNs are not secret in most enterprise environments: they appear in email headers, directory listings, LDAP queries, and SharePoint user profile pages. An attacker who can reach the SharePoint server and enumerate one administrator account can immediately impersonate that administrator.

Successful exploitation gives the attacker full access to SharePoint site collections the target user can access. A site collection administrator can read all documents, modify permissions, add users, delete content, and trigger server-side workflows. In the complete RCE chain, access extends to executing arbitrary commands on the SharePoint server itself.

The risk is compounded for organizations that expose SharePoint to the internet for remote workers or partner access. Certificate transparency logs and tools such as Shodan index publicly exposed SharePoint deployments by version. Attackers targeting CVE-2026-55040 can enumerate vulnerable servers and automate exploitation without requiring any pre-existing access or credentials. CISA's KEV listing (which covers all four CVEs added August 18, including CVE-2026-33824, CVE-2026-55040, CVE-2026-59310, and CVE-2026-65400) signals that federal agencies face a remediation deadline, but the exposure extends to every sector relying on unpatched on-premises SharePoint.

Free daily briefing

Briefings like this, every morning before 9am.

Threat intel, active CVEs, and campaign alerts, distilled for practitioners. 50,000+ subscribers. No noise.

Active Exploitation: What Attackers Are Doing With CVE-2026-55040

Exploitation of CVE-2026-55040 began within hours of Rapid7 publishing its detailed technical analysis and proof-of-concept on August 11, 2026. Defused honeypot data captured the first automated attack attempts on August 12, confirming attackers adopted the PoC almost immediately. CISA's August 18 KEV addition confirms the exploitation is widespread enough to require emergency remediation by all U.S. federal civilian executive branch agencies.

The observed attack pattern follows a consistent sequence. Attackers first enumerate the SharePoint server version by queering /_vti_pvt/service.cnf or parsing HTML metadata from the SharePoint login page. Once a vulnerable version is confirmed, they use LDAP enumeration or SharePoint's user profile service to identify administrative accounts. A forged JWT is then submitted to the SharePoint REST API, granting authenticated access. Post-exploitation activity includes SharePoint content exfiltration through the search and download APIs, credential harvesting from SharePoint secrets storage, and in complete-chain attacks, webshell deployment to the SharePoint LAYOUTS directory.

Behavioral indicators to hunt right now include requests to /_api/ and /_layouts/15/ from IP addresses with no prior access history, Authorization headers containing JWTs with an empty or absent signature segment (the third dot-separated component of a JWT is blank when alg=none is used), and file write events in the SharePoint Web Server Extensions directory from w3wp.exe or cmd.exe processes. August 2026 Patch Tuesday addressed both CVE-2026-55040 and the companion RCE flaw, closing both halves of the exploit chain. Organizations running August 2026 Patch Tuesday updates have addressed both components.

Subscribe to unlock Indicators of Compromise

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

Sigma Detection Rules for CVE-2026-55040 SharePoint Attacks

Two rules detect post-exploitation behavior following a successful authentication bypass: webshell deployment to the SharePoint layouts directory and webshell process execution via w3wp.exe.

  • Log sources: Windows file event and process creation telemetry from the SharePoint server host
  • First deployment: Detection-only mode; tune false positives before enabling blocking

For network-layer detection, monitor IIS access logs on SharePoint servers for Authorization headers containing the base64 pattern eyJhbGciOiJub25lIn0 (the encoding of {"alg":"none"}) in requests to /_api/, /_layouts/, or /_vti_bin/ paths. Any JWT submission with an empty third segment is a reliable indicator of an unsigned token. The WAF rules below target this pattern at the network layer.

Subscribe to unlock Sigma Detection Rules

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

Subscribe to unlock WAF Detection Rules

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

How to Remediate CVE-2026-55040: Patch SharePoint Server Now

Patching is the only complete fix for CVE-2026-55040. The workarounds available for some vulnerabilities, such as disabling features or adjusting configuration settings, do not apply here because the JWT validation issue is in compiled SharePoint code.

Apply official patch →msrc.microsoft.com/update-guide/en-US/vulnerability/CVE-2026-55040

Subscribe to unlock Remediation & Mitigation steps

Free subscribers unlock full IOC lists, Sigma detection rules, remediation steps, and every daily briefing.

Why CVE-2026-55040 Matters for Your Organization

CVE-2026-55040 SharePoint authentication bypass is not a theoretical risk. Exploitation began within hours of the public PoC release, CISA confirmed active attacks two days later, and the attack requires no credentials, no phishing, and no insider access. Any organization with an unpatched SharePoint Server reachable from the network is a viable target right now.

SharePoint stores documents, workflows, contracts, HR records, project files, and sensitive internal communications for hundreds of thousands of organizations globally. An attacker impersonating a SharePoint administrator can exfiltrate that data silently through SharePoint's native search and download APIs without triggering obvious alerts. In the full RCE chain, the attacker also gains code execution on the SharePoint server itself, which in most deployments sits inside the corporate network with access to Active Directory, file shares, databases, and other internal systems.

The remediation is straightforward: apply the July 2026 patches (KB5002882, KB5002883, or KB5002891 depending on your version) and the August 2026 SharePoint updates. If patching is delayed for any reason, restrict SharePoint network access immediately and deploy the WAF and Sigma detection rules from this post. Treat any authentication activity on SharePoint from August 11 onward as potentially hostile until the server is confirmed patched and clean.

CISA's addition of CVE-2026-55040 to the Known Exploited Vulnerabilities catalog sets a remediation deadline for federal agencies, but the threat applies equally to private sector organizations. The time to patch is before the next exploit scan hits your server, not after.

The bottom line

CVE-2026-55040 SharePoint authentication bypass gives attackers administrator access to SharePoint Server with no credentials, and exploitation has been confirmed in the wild since August 12, 2026. The patch (KB5002882 for Subscription Edition, KB5002883 for SharePoint 2019, KB5002891 for SharePoint 2016) was released in July 2026 and must be applied immediately. The August 2026 Patch Tuesday updates close the companion RCE chain. If you run on-premises SharePoint Server and have not applied these patches, restrict network access now and patch before end of day.

This analysis is generic. create a free account to score threats like this against your own stack.

Frequently asked questions

What is CVE-2026-55040?

CVE-2026-55040 is a critical authentication bypass vulnerability in Microsoft SharePoint Server with a CVSS score of 9.1. It allows a remote unauthenticated attacker to forge a JSON Web Token (JWT) and impersonate any SharePoint site user, including administrators, without supplying a valid password or credentials. The flaw stems from missing or disabled validation in SharePoint's JWT processing pipeline, which trusts unsigned tokens.

How does the SharePoint JWT authentication bypass work?

The vulnerability chains four weaknesses in SharePoint's JWT validation pipeline. The server accepts tokens with the 'alg=none' header, meaning no cryptographic signature is required. An attacker who knows a target user's Active Directory Security Identifier (SID) or User Principal Name (UPN) can craft a JWT bearing that user's identity and submit it in an HTTP request to the SharePoint API. SharePoint accepts the forged token as valid and grants full access as the impersonated user.

Which versions of SharePoint Server are affected by CVE-2026-55040?

Three on-premises versions of SharePoint Server are affected: SharePoint Server Subscription Edition, SharePoint Server 2019, and SharePoint Enterprise Server 2016. Each has a corresponding patch (KB5002882, KB5002883, and KB5002891 respectively) released in the July 2026 Patch Tuesday cycle. Organizations that have not applied July 2026 patches remain vulnerable.

Is SharePoint Online affected by CVE-2026-55040?

No. SharePoint Online, which is part of Microsoft 365, is not affected by CVE-2026-55040. Microsoft manages the cloud version's infrastructure and patching independently. Only on-premises deployments of SharePoint Server Subscription Edition, 2019, and 2016 are vulnerable. Organizations using SharePoint Online exclusively do not need to take action for this specific CVE.

Is CVE-2026-55040 being actively exploited right now?

Yes. CISA added CVE-2026-55040 to its Known Exploited Vulnerabilities catalog on August 18, 2026, confirming active exploitation. Threat intelligence firm Defused posted honeypot alerts on August 12 noting attacks started within hours of Rapid7 publishing a working proof-of-concept exploit on August 11. Active exploitation is confirmed against internet-facing SharePoint Server deployments.

Can CVE-2026-55040 lead to remote code execution?

Yes. Rapid7 researchers demonstrated that CVE-2026-55040 can be chained with a second, separately tracked SharePoint vulnerability to achieve unauthenticated remote code execution. The companion RCE flaw was addressed in the August 2026 Patch Tuesday cycle. Applying both the July and August SharePoint patches breaks the complete exploit chain and closes the RCE path.

How do I detect CVE-2026-55040 exploitation in my environment?

Look for HTTP requests to SharePoint paths including /_api/, /_layouts/15/, and /_vti_bin/ that contain Authorization headers with JWT tokens carrying the alg=none header value. Monitor Windows Security event logs for authentications under unexpected user identities. Enable IIS access logging on SharePoint servers and alert on file writes to the SharePoint layouts directory (C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\16\TEMPLATE\LAYOUTS\) from w3wp.exe or cmd.exe processes.

What should I do if I cannot patch SharePoint Server immediately?

If immediate patching is not possible, take these interim steps: restrict SharePoint Server access to known IP ranges at the network perimeter, require all API access to route through a WAF configured to reject unsigned JWT tokens, enable authentication logging in IIS to capture all token submissions, and verify that SharePoint is not directly internet-facing. Apply the July 2026 patches (KB5002882/83/91) and August 2026 patches as soon as a maintenance window opens.

Sources & references

  1. Rapid7: CVE-2026-55040 SharePoint JWT Token Authentication Bypass
  2. CISA Known Exploited Vulnerabilities Catalog: August 18, 2026
  3. Microsoft Security Response Center: CVE-2026-55040
  4. Help Net Security: Attackers exploit critical SharePoint flaw after PoC goes public
  5. SecurityWeek: SharePoint Vulnerability Exploited Shortly After PoC Release

Free resources

25
Free download

Critical CVE Reference Card 2025–2026

25 actively exploited vulnerabilities with CVSS scores, exploit status, and patch availability. Print it, pin it, share it with your SOC team.

No spam. Unsubscribe anytime.

Free download

Ransomware Incident Response Playbook

Step-by-step 24-hour IR checklist covering detection, containment, eradication, and recovery. Built for SOC teams, IR leads, and CISOs.

No spam. Unsubscribe anytime.

Free newsletter

Get threat intel before your inbox does.

50,000+ security professionals read Decryption Digest for early warnings on zero-days, ransomware, and nation-state campaigns. Free, daily, no spam.

Unsubscribe anytime. We never sell your data.

Eric Bang
Author

Founder & Cybersecurity Evangelist, Decryption Digest

Cybersecurity professional with expertise in threat intelligence, vulnerability research, and enterprise security. Covers zero-days, ransomware, and nation-state operations for 50,000+ security professionals every morning.

Giveaway: InfoSec World 2026 All Access Pass ($3,895 value)

Details →
Daily Briefing

Subscribe to enter the giveaway

Every subscriber is automatically entered. You also get daily threat intel every morning: zero-days, ransomware, and nation-state campaigns. Free. No spam.

Already subscribed? You're already entered.

Giveaway

Win a $3,895 InfoSec World 2026 pass.