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-41203

CVE-2026-41203: CI4MS Theme Upload RCE Vulnerability

CVE-2026-41203 is a remote code execution flaw in CI4MS that allows authenticated users to upload malicious ZIP files and execute arbitrary code. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-41203 Overview

CVE-2026-41203 is a path traversal vulnerability [CWE-22] in CI4MS, a CodeIgniter 4-based content management system skeleton with role-based access control (RBAC) and theme support. The flaw resides in the Theme::upload function, which extracts user-supplied ZIP archives without validating entry names. An authenticated backend user holding the theme create permission can craft a malicious archive containing path traversal sequences to write files outside the intended theme directory. Attackers can drop a PHP file under the public web root and achieve remote code execution. The issue affects all CI4MS releases prior to version 0.31.5.0 and is patched in that release.

Critical Impact

A backend user with theme create rights can chain Zip Slip extraction with PHP execution under the web root to gain full remote code execution on the host.

Affected Products

  • CI4MS (ci4-cms-erp/ci4ms) versions prior to 0.31.5.0
  • Deployments exposing the backend theme upload feature to authenticated users
  • CodeIgniter 4 applications built on the CI4MS skeleton

Discovery Timeline

  • 2026-05-07 - CVE-2026-41203 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-41203

Vulnerability Analysis

CI4MS provides a backend feature that lets privileged users install new themes by uploading a ZIP archive. The Theme::upload method extracts each entry of the archive directly to the filesystem without normalizing or validating entry names. An attacker can include archive entries with relative path components such as ../ to escape the theme directory and write to arbitrary destinations the PHP process can reach.

When the destination falls inside the public web root, the attacker can place a .php file that the web server will execute on the next request. Because the application uses RBAC, only users granted the theme create permission can reach the upload endpoint, but that permission is commonly delegated to non-administrative roles in CMS deployments.

Root Cause

The root cause is missing validation of ZIP entry names during extraction. The extraction routine concatenates the destination directory with the archive entry name and writes file contents without resolving the result against the intended base directory or rejecting entries containing .. segments or absolute paths.

Attack Vector

Exploitation requires network access to the CI4MS backend and an authenticated session with the theme create permission. The attacker uploads a crafted ZIP archive whose entries traverse out of the theme directory and land in a web-accessible location. Requesting the dropped PHP file from the public web root then executes attacker-controlled code with the privileges of the web server process. Refer to the GitHub Security Advisory GHSA-xv3r-vr59-95rg for vendor technical details.

Detection Methods for CVE-2026-41203

Indicators of Compromise

  • Unexpected .php files appearing under the public/ web root or theme asset directories shortly after a theme upload event.
  • Audit log entries showing theme uploads from non-administrative accounts followed by HTTP requests to newly created PHP files.
  • ZIP archive entries containing ../ sequences or absolute paths captured in upload logs.

Detection Strategies

  • Inspect the contents of uploaded archives at the application or web application firewall layer and reject entries whose normalized path escapes the destination directory.
  • Monitor file integrity on the public web root and theme directories for new or modified PHP files outside expected deployment workflows.
  • Correlate authenticated theme upload requests with subsequent execution of newly created PHP scripts to surface post-exploitation activity.

Monitoring Recommendations

  • Alert on writes to web-accessible directories that originate from the PHP-FPM or web server user outside scheduled deployments.
  • Track outbound network connections from the web server process that follow theme upload events to detect command-and-control activity.
  • Review backend RBAC assignments and flag accounts that hold theme create permissions but do not require them for daily operations.

How to Mitigate CVE-2026-41203

Immediate Actions Required

  • Upgrade CI4MS to version 0.31.5.0 or later, which patches the Theme::upload extraction logic.
  • Audit all backend accounts and revoke the theme create permission from users who do not require it.
  • Review theme directories and the public web root for unauthorized PHP files and remove any artifacts attributable to recent uploads.

Patch Information

The maintainers fixed the issue in CI4MS release 0.31.5.0. The patch adds validation of archive entry names so that extracted files are constrained to the intended theme directory. Administrators should upgrade and then rotate any credentials that were valid on the host while the vulnerable version was deployed.

Workarounds

  • Disable the theme upload feature or restrict its route to trusted administrators until the upgrade is applied.
  • Place the application behind a web application firewall rule that inspects multipart uploads for ZIP archives containing .. traversal sequences.
  • Configure the web server to deny PHP execution in theme asset directories where only static files are expected.

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechCi4ms

  • SeverityCRITICAL

  • CVSS Score9.4

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/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
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Release 0.31.5.0

  • GitHub Security Advisory GHSA-xv3r-vr59-95rg
  • Related CVEs
  • CVE-2026-41587: CI4MS Theme Upload RCE Vulnerability

  • CVE-2026-41202: CI4MS Backup Restore RCE Vulnerability

  • CVE-2026-25510: CI4MS CodeIgniter CMS RCE Vulnerability

  • CVE-2026-41891: CI4MS 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