CVE-2026-64900
This CVE targets a permission-context sanitization failure in SharePoint, not a generic input validation bug. The 'authorized attacker' qualifier is analytically significant: the vulnerability requires an attacker with valid SharePoint credentials, which reframes the issue from 'sanitize user input' to 'sanitize content from any authenticated user regardless of their permission level.' This is a harder class of bug because it lives at every render path rather than at a single input boundary. The 'spoofing' outcome in the CVE description is the critical diagnostic clue. When XSS in collaborative platforms succeeds at impersonation rather than session hijacking, it indicates the vulnerability lives in metadata rendering—where content appears to come from a trusted source—rather than in body content. Audit your rendering paths that handle authored-by metadata, display names, and content attribution fields, particularly where that metadata gets serialized to HTML without equivalent escaping to main content. The blast radius extends well beyond direct SharePoint users. SharePoint content propagates through Microsoft 365's integration graph: Teams channels render SharePoint list items, Power Automate pulls content into approval workflows, external embeds consume SharePoint output, and search indexers index it. Each render path is a separate generation of the same defect. An attacker exploiting this vulnerability doesn't just compromise a SharePoint session—they compromise the trust chain feeding every integrated surface, including users who never touch SharePoint directly. In practice, audit rendering surfaces that handle content from authenticated users differently than anonymous input, prioritize metadata and attribution fields for escaping review, and treat SharePoint's hybrid classic/modern architecture as a likely source of inconsistent sanitization between parallel rendering paths.
Reviewed through automated stages and approved by a human before publication.