The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-40927

CVE-2026-40927: Docmost XSS Vulnerability

CVE-2026-40927 is a cross-site scripting flaw in Docmost that allows attackers to execute malicious JavaScript through comment links. This post explains its impact, affected versions, and mitigation steps.

Published: April 23, 2026

CVE-2026-40927 Overview

CVE-2026-40927 is a stored Cross-Site Scripting (XSS) vulnerability discovered in Docmost, an open-source collaborative wiki and documentation software. Prior to version 0.80.0, the application fails to properly sanitize JavaScript URI schemes when users include links in page comments. When another user clicks on a malicious link containing a JavaScript URI, the embedded script executes in the context of their browser session, potentially leading to session hijacking, data theft, or other malicious actions.

Critical Impact

Authenticated attackers can inject persistent JavaScript payloads through page comments, compromising other users who interact with the malicious links within the collaborative documentation platform.

Affected Products

  • Docmost versions prior to 0.80.0
  • All installations using the comment functionality on wiki pages

Discovery Timeline

  • 2026-04-21 - CVE CVE-2026-40927 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-40927

Vulnerability Analysis

This vulnerability falls under CWE-79 (Improper Neutralization of Input During Web Page Generation), commonly known as Cross-Site Scripting. The flaw exists in how Docmost processes links embedded within page comments. The application does not adequately validate or sanitize the URI scheme of user-supplied links, allowing attackers to inject JavaScript URIs (e.g., javascript:alert('XSS')) that execute when clicked by other users.

The attack requires low privileges (any authenticated user who can leave comments) and user interaction (victim must click the malicious link). However, because the payload is stored in the comment and persists on the page, all users viewing that comment become potential victims. This makes it a stored XSS vulnerability, which is generally more dangerous than reflected XSS since it does not require the attacker to trick each victim individually.

Root Cause

The root cause is insufficient input validation on URL schemes within the comment link functionality. The application accepts and renders links without checking whether the URI scheme is safe (such as http, https, or mailto). By allowing arbitrary URI schemes, including the javascript: protocol, the application enables script injection through seemingly legitimate link syntax.

Attack Vector

The attack is network-based and targets authenticated users of the Docmost platform. An attacker with comment privileges creates a comment containing a link with a JavaScript URI payload. When other users view the page and click the link, the JavaScript executes in their browser context with access to their session cookies, local storage, and DOM. This can be leveraged to steal session tokens, perform actions on behalf of the victim, or redirect them to malicious sites.

The vulnerability is exploited by inserting a JavaScript URI as a link within a comment. When rendered, the link appears legitimate but executes arbitrary JavaScript when clicked. The payload could perform actions such as sending the user's session cookie to an attacker-controlled server or modifying page content. For detailed technical information, see the GitHub Security Advisory.

Detection Methods for CVE-2026-40927

Indicators of Compromise

  • Presence of javascript: URI schemes in comment content stored in the database
  • Unusual outbound requests originating from user browsers after viewing comment pages
  • User reports of unexpected behavior or redirects when clicking links in comments

Detection Strategies

  • Implement content scanning rules to detect javascript:, data:, and vbscript: URI schemes in comment data
  • Deploy Web Application Firewall (WAF) rules to flag or block requests containing JavaScript URI patterns in comment submissions
  • Review application logs for comment creation events containing suspicious URI patterns

Monitoring Recommendations

  • Monitor for anomalous JavaScript execution patterns on documentation pages
  • Set up alerting for bulk comment modifications that may indicate payload injection
  • Establish baseline metrics for comment link click-through rates to detect unusual activity

How to Mitigate CVE-2026-40927

Immediate Actions Required

  • Upgrade Docmost to version 0.80.0 or later immediately
  • Audit existing comments in the database for malicious JavaScript URIs and remove any suspicious content
  • Consider temporarily disabling the comment feature if immediate patching is not possible

Patch Information

The vulnerability is fixed in Docmost version 0.80.0. Users should upgrade to this version or later to remediate the issue. The fix implements proper URI scheme validation to prevent JavaScript and other dangerous protocols from being included in comment links. For more details, refer to the GitHub Security Advisory.

Workarounds

  • Implement a Content Security Policy (CSP) header to restrict inline script execution, which can mitigate the impact of XSS attacks
  • Use input sanitization at the application or reverse proxy level to strip or encode JavaScript URIs before storage
  • Restrict comment functionality to trusted users only until the patch can be applied
bash
# Example CSP header configuration for nginx
add_header Content-Security-Policy "default-src 'self'; script-src 'self'; object-src 'none';" always;

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechDocmost

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34212: Docmost Stored XSS Vulnerability

  • CVE-2026-33193: Docmost Stored XSS Vulnerability

  • CVE-2026-24045: Docmost Stored XSS Vulnerability

  • CVE-2026-23630: Docmost Mermaid Stored XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English