A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-33741

CVE-2026-33741: EspoCRM Stored XSS Vulnerability

CVE-2026-33741 is a stored cross-site scripting flaw in EspoCRM that allows attackers to execute malicious JavaScript through SVG uploads. This post covers the technical details, affected versions, impact, and mitigation.

Published: May 21, 2026

CVE-2026-33741 Overview

CVE-2026-33741 is a stored cross-site scripting (XSS) vulnerability in EspoCRM, an open source customer relationship management application. Versions 9.3.3 and below permit authenticated users to upload SVG attachments through standard attachment fields and serve them as top-level inline documents. An attacker can chain a malicious SVG with a same-origin JavaScript attachment to execute code in another user's browser session. The issue is classified under CWE-79 and was fixed in version 9.3.4.

Critical Impact

Authenticated attackers can achieve stored cross-user XSS within the victim's EspoCRM origin, enabling session theft, data exfiltration, and unauthorized actions performed as the victim.

Affected Products

  • EspoCRM versions 9.3.3 and earlier
  • Fixed in EspoCRM version 9.3.4
  • All deployments accepting authenticated user attachment uploads

Discovery Timeline

  • 2026-05-19 - CVE-2026-33741 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-33741

Vulnerability Analysis

The vulnerability resides in EspoCRM's attachment handling pipeline. Authenticated users can upload SVG files through attachment-capable fields used in normal application workflows. The application then serves those SVG files as top-level inline documents through both the attachment and image entry points. Because the SVG renders in the same origin as the EspoCRM application, any JavaScript executed within it operates with the victim's session context.

EspoCRM's Content Security Policy (CSP) blocks inline <script> execution within the served SVG. However, the same CSP still permits same-origin external script loading. An attacker exploits this gap by uploading two attachments: a malicious SVG that references an external script tag, and a second attacker-controlled JavaScript file hosted as an attachment on the same origin. When the victim opens the SVG, the browser fetches the companion JavaScript attachment and executes it under the EspoCRM origin.

Root Cause

The root cause is improper handling of user-supplied SVG content combined with a permissive CSP. The application treats uploaded SVG files as renderable inline documents rather than enforcing safe content types or sandboxed delivery. The CSP's allowance of same-origin script sources fails to account for the fact that attackers can write arbitrary JavaScript files into the same origin through the attachment endpoint.

Attack Vector

Exploitation requires an authenticated low-privilege account and one user interaction. The attacker uploads the SVG payload and JavaScript file through the standard attachment workflow, then delivers the SVG link to another user. When the victim opens the link, the browser renders the SVG, loads the same-origin script, and executes attacker code in the victim's authenticated context. See the GitHub Security Advisory GHSA-5wh5-ccv2-m3pv for additional technical details.

Detection Methods for CVE-2026-33741

Indicators of Compromise

  • SVG files stored in EspoCRM attachment directories containing <script src="..."> or <use xlink:href="..."> references pointing to other attachment URLs
  • JavaScript files (.js) uploaded as attachments by non-administrative users
  • HTTP requests to the attachment or image entry points returning Content-Type: image/svg+xml followed by additional same-origin script fetches

Detection Strategies

  • Inspect attachment storage for SVG content containing script elements, event handlers (onload, onclick), or external resource references
  • Review web server access logs for sequential requests pairing SVG retrieval with .js attachment retrieval from the same session
  • Audit attachment uploads grouped by user account to identify users uploading both SVG and JavaScript file types

Monitoring Recommendations

  • Alert on uploads of file types with executable browser interpretation, including .svg, .html, and .js, by non-administrative roles
  • Monitor EspoCRM audit logs for attachment access patterns where multiple users open the same uploaded SVG within a short window
  • Track CSP violation reports from EspoCRM users to identify attempted script execution chains

How to Mitigate CVE-2026-33741

Immediate Actions Required

  • Upgrade EspoCRM to version 9.3.4 or later, which contains the official fix
  • Audit existing attachments for SVG and JavaScript files uploaded since deployment and quarantine suspicious entries
  • Revoke and reissue session tokens for users who may have opened untrusted SVG attachments

Patch Information

The EspoCRM maintainers released the fix in version 9.3.4. The patch addresses the SVG handling and CSP enforcement gaps documented in the GitHub Security Advisory GHSA-5wh5-ccv2-m3pv. Administrators should follow the standard EspoCRM upgrade procedure and verify the application version after deployment.

Workarounds

  • Block SVG uploads at the reverse proxy or web application firewall until patching is complete
  • Configure the web server to force Content-Disposition: attachment and Content-Type: application/octet-stream on attachment downloads to prevent inline rendering
  • Restrict attachment upload permissions to trusted user roles only
  • Tighten the deployment CSP to disallow script-src 'self' for the attachment serving path
bash
# Example nginx configuration to force attachment download for SVG files
location ~* \.svg$ {
    add_header Content-Disposition "attachment";
    add_header X-Content-Type-Options "nosniff";
    default_type application/octet-stream;
}

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechEspocrm

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityLow
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33657: EspoCRM Stored XSS Vulnerability

  • CVE-2026-33733: EspoCRM Path Traversal Vulnerability

  • CVE-2026-33656: EspoCRM Path Traversal Vulnerability

  • CVE-2026-33534: EspoCRM SSRF 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