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

CVE-2026-32894: Chamilo LMS Auth Bypass Vulnerability

CVE-2026-32894 is an authentication bypass flaw in Chamilo LMS that allows authenticated teachers to delete any student's grade across the platform via IDOR. This article covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-32894 Overview

CVE-2026-32894 is an Insecure Direct Object Reference (IDOR) vulnerability in Chamilo LMS, a widely-used open-source learning management system. The flaw exists in the gradebook result view page, where any authenticated teacher can delete any student's grade result across the entire platform by manipulating the delete_mark or resultdelete GET parameters. The vulnerability stems from missing ownership and course-scope verification in the gradebook operations, allowing unauthorized modification of academic records.

Critical Impact

Any authenticated teacher can delete grade results for students in any course across the platform, potentially causing significant academic data integrity issues and disrupting educational records.

Affected Products

  • Chamilo LMS versions prior to 1.11.38
  • Chamilo LMS versions prior to 2.0.0-RC.3

Discovery Timeline

  • 2026-04-10 - CVE-2026-32894 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2026-32894

Vulnerability Analysis

This Insecure Direct Object Reference vulnerability allows authenticated users with teacher privileges to bypass authorization controls in the gradebook module. The core issue lies in the gradebook_view_result.php file, where the application accepts user-supplied result IDs via GET parameters without validating that the requesting teacher has ownership or is associated with the course containing the targeted grade result.

When a teacher accesses the gradebook result deletion functionality, the application retrieves the result based solely on the ID provided in the delete_mark parameter. Prior to the fix, no verification was performed to ensure the result belonged to an evaluation within the teacher's scope. This allows a malicious teacher to iterate through result IDs or target specific students' grades in courses they have no legitimate access to.

Root Cause

The vulnerability originates from insufficient authorization checks in the Result::load() function and its calling code in gradebook_view_result.php. The application trusted user-supplied input ($_GET['delete_mark']) to identify which grade result to delete without verifying that the result's associated evaluation ID (evaluation_id) matched the current evaluation context ($select_eval). This missing validation created a direct object reference that attackers could manipulate to access unauthorized resources.

Attack Vector

An authenticated attacker with teacher privileges can exploit this vulnerability through a simple HTTP GET request. The attack requires:

  1. Valid teacher authentication to the Chamilo LMS platform
  2. Knowledge or enumeration of result IDs (which may be sequential integers)
  3. Crafting a malicious URL with a manipulated delete_mark parameter pointing to a victim's grade result

The attack can be performed through the browser by modifying URL parameters, making it trivially exploitable without specialized tools.

php
// Vulnerable code - gradebook_view_result.php (before patch)
// No validation that the result belongs to the current evaluation context
if (isset($_GET['delete_mark'])) {
    $result = Result::load($_GET['delete_mark']);
    if (!empty($result[0])) {
        $result[0]->delete();  // Deletes any result without authorization check
    }
}

Source: GitHub Commit

The patched code adds evaluation ID validation:

php
// Patched code - validates evaluation ownership
if (isset($_GET['delete_mark'])) {
    $result = Result::load($_GET['delete_mark']);
    if (!empty($result[0]) && $result[0]->get_evaluation_id() == $select_eval) {
        $result[0]->delete();
    }
}

Source: GitHub Commit

Detection Methods for CVE-2026-32894

Indicators of Compromise

  • Unusual patterns of grade deletions across multiple courses by a single teacher account
  • HTTP access logs showing requests to gradebook_view_result.php with sequential or anomalous delete_mark parameter values
  • Grade deletion activity for courses where the authenticated teacher is not enrolled or assigned
  • Spike in gradebook modification events in application audit logs

Detection Strategies

  • Monitor web server access logs for requests to /main/gradebook/gradebook_view_result.php containing delete_mark or resultdelete parameters
  • Implement alerting for grade deletion operations where the teacher's course enrollment doesn't match the affected student's course
  • Review database audit trails for mass deletion patterns in the gradebook_result table
  • Cross-reference teacher session activity with courses they legitimately teach

Monitoring Recommendations

  • Enable verbose logging for gradebook operations in Chamilo LMS configuration
  • Implement database triggers or application-level auditing for grade result modifications
  • Configure web application firewall (WAF) rules to flag suspicious parameter manipulation patterns
  • Set up alerts for teachers accessing grade results outside their assigned courses

How to Mitigate CVE-2026-32894

Immediate Actions Required

  • Upgrade Chamilo LMS to version 1.11.38 or later (for 1.x installations)
  • Upgrade Chamilo LMS to version 2.0.0-RC.3 or later (for 2.x installations)
  • Review gradebook audit logs for any unauthorized grade deletions that may have occurred
  • Implement additional access controls at the web server level until patching is complete

Patch Information

The vulnerability has been addressed in Chamilo LMS versions 1.11.38 and 2.0.0-RC.3. The fix adds validation to ensure that the result being deleted belongs to the current evaluation context by checking $result[0]->get_evaluation_id() == $select_eval before allowing the deletion operation. Security patches are available via the following commits:

  • Patch for 1.x branch
  • Patch for 2.x branch

For additional details, see the GitHub Security Advisory.

Workarounds

  • Restrict access to the gradebook module through web server configuration until patching is possible
  • Implement additional authentication requirements for grade modification actions
  • Temporarily disable the grade deletion functionality via .htaccess or nginx location blocks
  • Apply manual patching by adding the evaluation ID check as shown in the security commits
bash
# Temporary Apache .htaccess restriction for gradebook module
# Place in /main/gradebook/ directory
<Files "gradebook_view_result.php">
    # Restrict to specific trusted IP addresses until patched
    Require ip 192.168.1.0/24
    # Or disable the delete functionality entirely
    # RewriteEngine On
    # RewriteCond %{QUERY_STRING} delete_mark
    # RewriteRule .* - [F,L]
</Files>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechChamilo Lms

  • 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:N/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-476
  • Technical References
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34602: Chamilo LMS Auth Bypass Vulnerability

  • CVE-2025-66447: Chamilo LMS Redirect Vulnerability

  • CVE-2025-59544: Chamilo LMS Auth Bypass Vulnerability

  • CVE-2026-33703: Chamilo LMS Information Disclosure Flaw
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