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

CVE-2026-30875: Chamilo LMS RCE Vulnerability

CVE-2026-30875 is a remote code execution flaw in Chamilo LMS affecting versions before 1.11.36. Attackers with Teacher role can upload malicious H5P packages to execute arbitrary code. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 20, 2026

CVE-2026-30875 Overview

CVE-2026-30875 is an arbitrary file upload vulnerability in Chamilo LMS, a widely-used open-source learning management system. The vulnerability exists in the H5P Import feature and allows authenticated users with Teacher role to achieve Remote Code Execution (RCE) on the underlying server. The H5P package validation mechanism only verifies the existence of the h5p.json file but fails to block dangerous file types including .htaccess files and PHP files with alternative extensions. An attacker can exploit this by uploading a crafted H5P package containing a webshell along with an .htaccess file that enables PHP execution for otherwise innocuous file extensions such as .txt, effectively bypassing the application's security controls.

Critical Impact

Authenticated users with Teacher privileges can achieve full Remote Code Execution on the server by exploiting insufficient file upload validation in the H5P Import feature, potentially compromising the entire learning management platform and its data.

Affected Products

  • Chamilo LMS versions prior to 1.11.36

Discovery Timeline

  • 2026-03-16 - CVE-2026-30875 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2026-30875

Vulnerability Analysis

This vulnerability is classified as CWE-94 (Improper Control of Generation of Code / Code Injection). The flaw resides in how Chamilo LMS processes H5P package imports. H5P is an open-source content collaboration framework designed to create, share, and reuse interactive HTML5 content. When a Teacher uploads an H5P package, the application performs minimal validation—checking only whether the required h5p.json manifest file exists within the archive. This creates a significant security gap as the validation does not inspect or restrict other file types included in the package.

The attack is network-accessible and requires low privileges (Teacher role), making it exploitable by any user with course content creation permissions. Upon successful exploitation, an attacker gains the ability to execute arbitrary code on the server with the privileges of the web server process, leading to potential complete system compromise including access to database credentials, student data, and lateral movement capabilities within the network.

Root Cause

The root cause of CVE-2026-30875 is insufficient file type validation during the H5P package import process. The application's upload handler examines the archive for the presence of h5p.json as a validity check but does not implement a comprehensive file type allowlist or denylist. This oversight allows dangerous files to be included in the uploaded package, including:

  1. Apache .htaccess files - These server configuration files can override directory-level settings
  2. PHP files with alternative extensions - Such as .pht, .phtml, or when combined with a permissive .htaccess, even .txt files can be configured to execute as PHP

Attack Vector

The attack follows a multi-stage exploitation pattern leveraging the trusted H5P package format:

  1. Package Preparation: The attacker creates a malicious H5P archive (ZIP format) containing a valid h5p.json file to pass validation, along with a PHP webshell and a crafted .htaccess file
  2. Configuration Override: The .htaccess file included in the package contains directives to enable PHP execution for non-standard extensions (e.g., AddHandler application/x-httpd-php .txt)
  3. Upload and Extraction: When the Teacher uploads the package through the H5P Import feature, the application extracts all contents to a web-accessible directory
  4. Code Execution: The attacker navigates to the uploaded webshell file, now executable due to the .htaccess configuration, achieving arbitrary command execution

The attack requires authentication with Teacher privileges but does not require any user interaction beyond the initial upload, and the exploitation complexity is low once the attacker has prepared the malicious package.

Detection Methods for CVE-2026-30875

Indicators of Compromise

  • Presence of .htaccess files in H5P content directories that were not part of the original application deployment
  • Unexpected PHP files or files with suspicious content in the H5P storage path (typically under app/upload/ or similar directories)
  • Web server access logs showing requests to unusual file paths within H5P content directories, especially with query parameters or POST data
  • Process execution anomalies originating from the web server user account (e.g., www-data, apache)

Detection Strategies

  • Monitor file system changes in H5P upload directories for creation of .htaccess files or executable scripts
  • Implement web application firewall (WAF) rules to detect and block H5P packages containing suspicious file types
  • Review authentication logs for Teacher account activity followed by unusual file access patterns
  • Deploy endpoint detection to identify shell spawning from web server processes

Monitoring Recommendations

  • Enable verbose logging for file upload operations in Chamilo LMS configuration
  • Configure SIEM alerts for file creation events in web-accessible upload directories
  • Implement integrity monitoring on critical directories to detect unauthorized configuration file additions
  • Monitor outbound network connections from the web server for potential command-and-control communication

How to Mitigate CVE-2026-30875

Immediate Actions Required

  • Upgrade Chamilo LMS to version 1.11.36 or later immediately
  • Audit existing H5P content directories for suspicious files, particularly .htaccess files and PHP scripts
  • Review Teacher account access and revoke unnecessary privileges until the patch is applied
  • Consider temporarily disabling the H5P Import feature if patching cannot be performed immediately

Patch Information

The Chamilo development team has addressed this vulnerability in version 1.11.36. The patch implements proper file type validation during H5P package import, blocking dangerous file types including .htaccess and PHP files regardless of extension. Organizations running affected versions should upgrade immediately by obtaining the patched release from the GitHub Release v1.11.36. For detailed information about the vulnerability and the fix, refer to the GitHub Security Advisory GHSA-mj4f-8fw2-hrfm.

Workarounds

  • Configure the web server to ignore .htaccess files in upload directories by setting AllowOverride None in the Apache virtual host configuration for those paths
  • Implement file upload scanning that rejects archives containing .htaccess or PHP-related files at the web server or WAF level
  • Restrict Teacher role assignments to only trusted personnel and implement additional approval workflows for content uploads
  • Deploy application-level controls to strip or quarantine suspicious files from uploaded H5P packages before extraction
bash
# Apache configuration to disable .htaccess in upload directories
# Add to your virtual host configuration file
<Directory /var/www/chamilo/app/upload>
    AllowOverride None
    <FilesMatch "\.ph(p|t|tml|ar)$">
        Require all denied
    </FilesMatch>
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechChamilo Lms

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-94
  • Technical References
  • GitHub Release v1.11.36
  • Vendor Resources
  • GitHub Security Advisory GHSA-mj4f-8fw2-hrfm
  • Related CVEs
  • CVE-2026-35196: Chamilo LMS RCE Vulnerability

  • CVE-2026-32931: Chamilo LMS File Upload RCE Vulnerability

  • CVE-2026-33618: Chamilo LMS RCE Vulnerability

  • CVE-2026-32892: Chamilo LMS RCE 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