Invaders
Back to Blog
Structured data rendered for: WebPage
INVADERS
Get Started

Share

Back to Blog
  1. Home
  2. Resources
  3. Blog
  4. vulnerability
  5. SharePoint CVE-2026-50522 makes patching only the first step

SharePoint CVE-2026-50522 makes patching only the first step

July 23, 2026
Lucas OliveiraLucas Oliveira
7 min read
SharePoint CVE-2026-50522 makes patching only the first step

SharePoint CVE-2026-50522 makes patching only the first step

Microsoft SharePoint Server is back in the emergency lane. CVE-2026-50522, a critical deserialization flaw patched in Microsoft's July 2026 security release, was added to CISA's Known Exploited Vulnerabilities catalog on July 22 after reports of active exploitation against on-premises SharePoint deployments.

The important detail is not only that the flaw can lead to remote code execution. It is what attackers are reportedly doing after exploitation: pulling SharePoint machine keys that can help preserve access even after administrators install updates. That turns a normal "patch now" message into a broader incident response problem.

For organizations still running internet-facing SharePoint Server, the action window is short. CISA's KEV entry gives U.S. federal civilian agencies until July 25, 2026 to apply required mitigations. Everyone else should treat that date as a useful severity signal, even if the directive does not formally apply to them.

What happened

Microsoft published CVE-2026-50522 on July 14, 2026 as part of its July security update. MSRC describes it as a Microsoft SharePoint remote code execution vulnerability caused by deserialization of untrusted data. The CVSS 3.1 score is 9.8 critical, with network attack vector, low attack complexity, no privileges required in the vector, and high impact to confidentiality, integrity, and availability.

NVD records the same core description and lists affected software configurations for SharePoint Enterprise Server 2016, SharePoint Server 2019, and SharePoint Server Subscription Edition below fixed build levels.

Public exploitation reports followed quickly. The Hacker News and Cybersecurity Dive reported that watchTowr and Defused observed exploitation activity after public proof-of-concept code appeared. CISA then added CVE-2026-50522 to KEV on July 22, naming it "Microsoft SharePoint Deserialization of Untrusted Data Vulnerability" and requiring mitigation by July 25 for covered federal agencies.

This is part of a wider SharePoint pressure wave. CISA had already warned that multiple SharePoint Server vulnerabilities were being exploited to gain unauthorized access to on-premises instances, establish RCE, steal IIS machine keys, abuse deserialization techniques, gain persistence, and deploy malware.

Why machine keys change the response

The risky part of this story is persistence. SharePoint and ASP.NET machine keys are cryptographic material used to protect and validate application state. If attackers steal them from a compromised server, they may be able to forge trusted data or maintain access paths that survive a simple software update.

That is why defenders should avoid the narrow checklist of "install patch, close ticket." The stronger response is:

  • patch affected SharePoint servers to the fixed versions
  • rotate exposed SharePoint and ASP.NET machine keys
  • restart IIS and dependent services as required by the vendor guidance
  • preserve logs before cleanup
  • hunt for exploitation and post-exploitation behavior
  • review whether any web-facing SharePoint instance should remain exposed

Patching removes the vulnerable code path. It does not automatically prove the server was never exploited before the patch, and it does not invalidate secrets or keys that may already have been copied.

The technical issue in plain English

Deserialization is the process of turning stored or transmitted data back into application objects. When applications deserialize untrusted data unsafely, attackers may be able to craft input that causes the server to execute logic it should never run.

That is the class behind CVE-2026-50522. Microsoft describes the impact as code execution over a network. NVD maps the weakness to CWE-502, deserialization of untrusted data.

For defenders, the practical model is simple:

  • the target is on-premises SharePoint Server, not SharePoint Online
  • exploitation can be remote over the network
  • the flaw is rated critical because successful exploitation can affect confidentiality, integrity, and availability
  • public reporting says active attackers are interested in machine keys and persistent access

That combination makes this a high-priority vulnerability, especially where SharePoint is internet-facing, linked to identity systems, or used as a document and workflow hub for sensitive business data.

What to check first

Start with asset scope. The most dangerous SharePoint server is the one nobody remembers is still exposed.

Security teams should identify:

  • all on-premises SharePoint Server 2016, 2019, and Subscription Edition deployments
  • public exposure through reverse proxies, load balancers, VPN bypass paths, or legacy publishing rules
  • servers that missed the July 2026 update
  • test, staging, disaster recovery, and partner-managed farms
  • connected service accounts and integrations with elevated permissions

Then confirm the exact patch level. Do not rely on a general Windows Update success state if SharePoint product updates and farm configuration tasks still need validation.

What to hunt for

Because exploitation is now public enough to draw broad scanning, hunting should cover both the vulnerable request path and the actions attackers might take after code execution.

Useful review areas include:

  • unusual requests to SharePoint authentication or sign-in endpoints
  • unexpected application errors around serialization, ViewState, or ASP.NET handling
  • access to configuration files containing machine keys
  • new or modified web files, timer jobs, features, or assemblies
  • suspicious PowerShell activity on SharePoint servers
  • IIS worker process child processes or abnormal command execution
  • outbound network connections from SharePoint front-end servers
  • new administrative users, group changes, or service account activity

If there is any sign of compromise, treat the server as part of a broader data breach investigation. SharePoint often stores documents, internal process data, project records, and links into other enterprise systems. A successful compromise can become a map of the organization, not just a single application incident.

Why this keeps happening to on-prem SharePoint

SharePoint Server has a difficult risk profile. It is old enough to carry legacy deployment patterns, important enough to hold sensitive information, and complex enough that patching can feel operationally expensive. Many environments also publish it to the internet because business users need access from anywhere.

That combination is attractive to attackers. A single exposed collaboration platform can offer authentication surfaces, document stores, internal names, service accounts, workflow integrations, and administrator habits. When public exploit code appears, opportunistic scanning and targeted follow-on activity can converge quickly.

This is where threat intelligence should be used practically. The point is not to collect every indicator. It is to drive the immediate questions: which servers are exposed, which are patched, which keys were rotated, and which logs show activity before remediation?

Defender priorities

The right response is fast but evidence-driven:

  • Apply Microsoft's security updates for every affected SharePoint Server version.
  • Follow CISA's mitigation and triage guidance for exposed systems.
  • Rotate machine keys where exposure or exploitation is possible.
  • Review IIS, SharePoint ULS, Windows event, EDR, proxy, and identity logs.
  • Remove unnecessary public exposure.
  • Validate backups before making disruptive changes.
  • Document what was patched, what was rotated, and what was reviewed.

If a SharePoint server was internet-facing before the patch, assume it deserves a compromise assessment. That does not mean every server is compromised. It means the cost of being wrong is too high when machine keys and persistent access are part of the observed attacker workflow.

Executive takeaway

CVE-2026-50522 is not just another Patch Tuesday CVE. CISA's KEV listing, the critical 9.8 score, public exploitation reporting, and machine-key concern make it a board-visible operational risk for organizations still running on-premises SharePoint.

The cleanest message for leadership is:

  • patching is mandatory
  • key rotation may be necessary
  • exposure should be reduced
  • logs need review
  • SharePoint Online is not the affected product in this specific server-side issue

For defenders, the finish line is not "SharePoint says patched." The finish line is "patched, keys handled, exposure understood, and no evidence of compromise left unreviewed."

What is CVE-2026-50522?

CVE-2026-50522 is a critical Microsoft SharePoint Server remote code execution vulnerability involving deserialization of untrusted data.

Is CVE-2026-50522 being exploited?

Yes. CISA added it to the Known Exploited Vulnerabilities catalog on July 22, 2026 based on evidence of active exploitation. Security researchers also reported active exploitation after public proof-of-concept code appeared.

Which SharePoint products are affected?

NVD lists affected configurations for Microsoft SharePoint Enterprise Server 2016, SharePoint Server 2019, and SharePoint Server Subscription Edition below fixed build levels.

Does this affect SharePoint Online?

The public advisories and exploitation warnings focus on on-premises SharePoint Server deployments. SharePoint Online is not the affected product in this specific server-side issue.

Why is key rotation important?

Public reporting says attackers are stealing SharePoint machine keys. If those keys were exposed, patching the software may not be enough to remove attacker persistence risk.

What should defenders do now?

Patch affected servers, rotate machine keys where exposure is possible, review logs for exploitation, reduce unnecessary internet exposure, and document remediation evidence.

References

  1. Microsoft SharePoint Remote Code Execution Vulnerability
  2. NVD: CVE-2026-50522
  3. Known Exploited Vulnerabilities Catalog entry for CVE-2026-50522
  4. CISA Urges SharePoint Hardening After New Exploitations
  5. Critical SharePoint RCE CVE-2026-50522 Under Active Exploitation After Public PoC
  6. Microsoft SharePoint under attack via new exploit

FAQ

Tags:
vulnerability
CVE
Microsoft
SharePoint
Remote Code Execution
Incident Response
Patch Management
Exposure Management
L

Written by

Lucas Oliveira

Research

A DevOps engineer and cybersecurity enthusiast with a passion for uncovering the latest in zero-day exploits, automation, and emerging tech. I write to share real-world insights from the trenches of IT and security, aiming to make complex topics more accessible and actionable. Whether I’m building tools, tracking threat actors, or experimenting with AI workflows, I’m always exploring new ways to stay one step ahead in today’s fast-moving digital landscape.

Hot TopicsLast 7 days

#Authentication Bypass
14 posts
#AI Security
12 posts
#Account Takeover
7 posts
#Active Exploitation
4 posts
#Access Control
3 posts
#API Security
3 posts
#Application Security
3 posts
#Authentication Tokens
3 posts
View all tags →

Categories

All ArticlesBusiness0Cloud & Application Security16Cloud Security1Cybercrime9Data Breach2Data Protection3Infostealer2Ransomware Groups2Ransomware Trends3Security3supply chain attack8Supply Chain Security5Threat Hunting & Intel32vulnerability106

Stay Updated

Get the latest cybersecurity insights delivered to your inbox.

INVADERS

Providing enterprise-grade cybersecurity solutions to protect organizations from evolving digital threats.

FacebookTwitterLinkedIn

Services

  • Web App Vulnerability Reports
  • Threat Hunting & Intelligence
  • Cybercrime & APT Tracking
  • Incident Response & Remediation

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
  • Security Policy

Company

  • About Us
  • Careers
  • Blog
  • Press

© 2026 Invaders Cybersecurity. All rights reserved.

PrivacyTermsCookies