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

CVE-2026-33706: Chamilo LMS Privilege Escalation Flaw

CVE-2026-33706 is a privilege escalation vulnerability in Chamilo LMS allowing authenticated users to elevate their permissions from student to teacher. This article covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-33706 Overview

CVE-2026-33706 is a privilege escalation vulnerability in Chamilo LMS, a widely-used open-source learning management system. Prior to version 1.11.38, any authenticated user with a REST API key can modify their own status field via the update_user_from_username endpoint. This allows a student (status=5) to change their status to Teacher/CourseManager (status=1), gaining unauthorized course creation and management privileges.

Critical Impact

Authenticated users can escalate privileges from student to teacher/administrator roles, enabling unauthorized course management and potentially compromising the integrity of the entire learning platform.

Affected Products

  • Chamilo LMS versions prior to 1.11.38
  • All installations with REST API enabled and user API keys issued
  • Deployments allowing student self-registration with API access

Discovery Timeline

  • 2026-04-10 - CVE-2026-33706 published to NVD
  • 2026-04-16 - Last updated in NVD database

Technical Details for CVE-2026-33706

Vulnerability Analysis

The vulnerability resides in the REST API endpoint responsible for user profile updates. The update_user_from_username function in Chamilo LMS failed to properly restrict which user fields could be modified by non-administrative users. While the endpoint correctly verified that users could only modify their own profiles (unless they were platform administrators), it did not restrict the specific fields that could be updated.

This oversight allowed any authenticated user to modify privileged fields including status, roles, auth_source, enabled, active, creator_id, registration_date, expiration_date, hr_dept_id, and official_code through REST API calls. The most impactful exploitation involves modifying the status field to elevate from student (status=5) to Teacher/CourseManager (status=1).

Root Cause

The root cause is improper access control (CWE-269) in the REST API user update functionality. The original code only validated whether the requesting user was either a platform administrator or the owner of the account being modified, but failed to implement field-level access restrictions. This allowed unprivileged users to modify sensitive account attributes that should only be changeable by administrators.

Attack Vector

An attacker with a valid student account and REST API key can craft a malicious API request to the update_user_from_username endpoint, including the status parameter set to 1 (Teacher/CourseManager). The attack is network-based, requires low privileges (any authenticated user), and does not require user interaction. Upon successful exploitation, the attacker gains elevated privileges within the learning management system.

php
             throw new Exception(get_lang('NoData'));
         }
 
-        if (!api_is_platform_admin() && $userId != $this->user->getId()) {
+        $isAdmin = api_is_platform_admin();
+
+        if (!$isAdmin && $userId != $this->user->getId()) {
             self::throwNotAllowedException();
         }
 
+        // Fields that only platform admins may change
+        $adminOnlyFields = [
+            'status',
+            'roles',
+            'auth_source',
+            'enabled',
+            'active',
+            'creator_id',
+            'registration_date',
+            'expiration_date',
+            'hr_dept_id',
+            'official_code',
+        ];
+
         if (!empty($parameters['new_login_name'])) {
             // Make sure the new username, if set, is available
             if (!UserManager::is_username_available($parameters['new_login_name'])) {

Source: GitHub Commit Update

Detection Methods for CVE-2026-33706

Indicators of Compromise

  • REST API calls to update_user_from_username endpoint containing status, roles, or other admin-only fields from non-admin users
  • Sudden changes in user status from student (5) to teacher/admin (1) without corresponding administrative action in audit logs
  • Unusual course creation activity by users who were recently students
  • Database modifications to user records where the status field changed without matching admin session activity

Detection Strategies

  • Implement API request logging and alerting for calls containing sensitive fields like status, roles, or auth_source
  • Monitor user privilege changes in the database and correlate with legitimate administrative actions
  • Deploy web application firewall (WAF) rules to detect and block API requests attempting to modify restricted fields
  • Review Chamilo access logs for anomalous patterns in REST API usage

Monitoring Recommendations

  • Enable detailed logging for all REST API endpoints, particularly user modification functions
  • Configure SIEM alerts for user status field changes that occur outside of administrative workflows
  • Implement database audit triggers on the user table to track privilege-related column modifications
  • Regularly audit user accounts for unexpected privilege elevations

How to Mitigate CVE-2026-33706

Immediate Actions Required

  • Upgrade Chamilo LMS to version 1.11.38 or later immediately
  • Audit all user accounts for unauthorized privilege escalations that may have occurred prior to patching
  • Review REST API access keys and revoke any suspicious or unnecessary API credentials
  • Temporarily disable REST API access if upgrade cannot be performed immediately

Patch Information

The vulnerability is fixed in Chamilo LMS version 1.11.38. The security patch introduces field-level access control in the REST API user update functionality. The fix adds an $adminOnlyFields array containing sensitive fields (status, roles, auth_source, enabled, active, creator_id, registration_date, expiration_date, hr_dept_id, official_code) that can only be modified by platform administrators. For detailed information, refer to the GitHub Security Advisory GHSA-3gqc-xr75-pcpw.

Workarounds

  • Disable REST API functionality entirely until the patch can be applied
  • Implement reverse proxy or WAF rules to block API requests containing sensitive parameters
  • Revoke all non-essential REST API keys, limiting access to trusted administrative users only
  • Add database-level triggers to prevent unauthorized status field modifications
bash
# Configuration example
# Temporary workaround: Disable REST API in Apache configuration
# Add to your Chamilo virtual host configuration
<Location "/main/webservices/api/">
    Require all denied
</Location>

# Or use .htaccess in the webservices directory
# Deny from all

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechChamilo

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-269
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-3gqc-xr75-pcpw
  • Related CVEs
  • CVE-2026-33698: Chamilo LMS RCE Vulnerability

  • CVE-2026-33702: Chamilo LMS Auth Bypass Vulnerability

  • CVE-2026-33704: Chamilo LMS RCE Vulnerability

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