Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-25133

CVE-2026-25133: October CMS Stored XSS Vulnerability

CVE-2026-25133 is a stored cross-site scripting flaw in October CMS that allows malicious SVG uploads with embedded JavaScript. This post explains its impact, affected versions, and mitigation steps.

Published: April 17, 2026

CVE-2026-25133 Overview

October CMS, a popular Content Management System and web platform built on the Laravel framework, contains a stored cross-site scripting (XSS) vulnerability in versions prior to 3.7.14 and 4.1.10. The vulnerability exists in the SVG sanitization logic, where a regex pattern used to strip event handler attributes (such as onclick or onload) can be bypassed using crafted payloads that exploit how the pattern matches attribute boundaries. This allows malicious SVG files with embedded JavaScript to be uploaded through the Media Manager.

Critical Impact

Successful exploitation could lead to privilege escalation if a superuser views or embeds the malicious SVG file, potentially allowing attackers to execute arbitrary JavaScript in the context of an administrative session.

Affected Products

  • October CMS versions prior to 3.7.14 (v3.x branch)
  • October CMS versions prior to 4.1.10 (v4.x branch)
  • Installations with backend access and media upload permissions enabled

Discovery Timeline

  • 2026-04-14 - CVE CVE-2026-25133 published to NVD
  • 2026-04-14 - Last updated in NVD database

Technical Details for CVE-2026-25133

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Improper Neutralization of Input During Web Page Generation), commonly known as Cross-Site Scripting. The flaw resides in October CMS's SVG file sanitization mechanism within the Media Manager component.

SVG files are XML-based vector image formats that can contain embedded JavaScript through event handler attributes like onclick, onload, onmouseover, and others. October CMS implements a regex-based sanitizer to strip these potentially dangerous attributes before allowing SVG uploads. However, the regex pattern contains a boundary-matching weakness that allows attackers to craft payloads that slip through the sanitization process.

The attack requires authenticated backend access with media upload permissions, making it an authenticated attack vector. However, the potential for privilege escalation to superuser accounts significantly increases the risk. When a privileged user views or embeds the malicious SVG file, the embedded JavaScript executes in their browser context, potentially exposing session tokens, enabling CSRF attacks, or allowing full account takeover.

Root Cause

The root cause is an insufficient regex pattern used for stripping event handler attributes from SVG content. The regex fails to properly account for all valid attribute boundary conditions, allowing attackers to structure their payloads in ways that bypass the pattern matching. This is a common pitfall when using regex for HTML/XML sanitization rather than proper DOM-based parsing and allowlist approaches.

Attack Vector

The attack is network-based and requires:

  1. Authenticated access to the October CMS backend
  2. Media upload permissions to access the Media Manager
  3. Social engineering or natural workflow to get a superuser to view or embed the malicious SVG

An attacker with lower-level backend privileges can upload a specially crafted SVG file through the Media Manager. The malicious SVG contains JavaScript disguised to bypass the regex sanitizer. When the SVG is later viewed directly, embedded in a page, or previewed by a superuser, the JavaScript payload executes in their browser context.

The vulnerability allows crafted SVG files to embed malicious JavaScript by exploiting weaknesses in regex-based attribute filtering. Attackers can structure event handler attributes in ways that don't match the expected boundary patterns. For detailed technical information about the specific bypass technique, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-25133

Indicators of Compromise

  • Unusual SVG files uploaded through the Media Manager containing obfuscated or encoded content
  • SVG files with unexpected event handler attributes or <script> tags that appear malformed
  • Backend access logs showing media uploads from accounts that don't typically upload SVG content
  • Reports of unexpected JavaScript behavior when viewing media assets

Detection Strategies

  • Implement file integrity monitoring on the media upload directory to detect suspicious SVG uploads
  • Review web application firewall (WAF) logs for SVG file uploads containing JavaScript-related keywords
  • Monitor backend user activity for unusual patterns of media uploads, especially from low-privilege accounts
  • Conduct regular security scans of uploaded media assets for embedded scripts

Monitoring Recommendations

  • Enable detailed logging for Media Manager upload activities
  • Configure alerts for SVG file uploads, particularly from accounts that rarely upload media
  • Implement content security policy (CSP) headers to mitigate JavaScript execution from untrusted sources
  • Regularly audit media storage directories for suspicious file content

How to Mitigate CVE-2026-25133

Immediate Actions Required

  • Upgrade October CMS to version 3.7.14 or later for v3.x installations
  • Upgrade October CMS to version 4.1.10 or later for v4.x installations
  • Audit existing SVG files in the media library for potentially malicious content
  • Temporarily restrict SVG upload permissions to trusted users until patching is complete

Patch Information

The October CMS maintainers have addressed this vulnerability in versions 3.7.14 and 4.1.10. The fix improves the SVG sanitization logic to properly handle attribute boundary matching, preventing the regex bypass technique. Organizations should update to these versions immediately through their standard Composer update process. For more details, see the GitHub Security Advisory.

Workarounds

  • Disable SVG file uploads entirely through the Media Manager configuration until patching is possible
  • Implement a web application firewall (WAF) rule to block SVG uploads containing event handler patterns
  • Restrict media upload permissions to only highly trusted backend users
  • Use a CDN or separate domain for serving uploaded media to contain potential XSS impact

If immediate patching is not possible, consider modifying the allowed upload file types in October CMS configuration:

yaml
# config/media.php - Disable SVG uploads temporarily
'allowed_extensions' => 'jpg,jpeg,png,gif,webp,pdf,doc,docx',
# Remove 'svg' from the allowed list until patch is applied

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechOctober

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:P/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-24907: October CMS Stored XSS Vulnerability

  • CVE-2026-24906: October CMS Stored XSS Vulnerability

  • CVE-2026-25125: October CMS Information Disclosure Flaw

  • CVE-2026-22692: October CMS Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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