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

CVE-2026-5546: Campcodes Learning System RCE Vulnerability

CVE-2026-5546 is a remote code execution vulnerability in Campcodes Complete Online Learning Management System 1.0 caused by unrestricted file upload. This article covers technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-5546 Overview

A critical unrestricted file upload vulnerability has been discovered in Campcodes Complete Online Learning Management System version 1.0. The vulnerability affects the add_lesson function within the file /application/models/Crud_model.php, allowing authenticated attackers to upload arbitrary files to the server. This flaw can be exploited remotely and enables potential remote code execution through malicious file uploads.

Critical Impact

Authenticated attackers can upload arbitrary files including web shells, potentially leading to full server compromise and unauthorized access to sensitive educational data.

Affected Products

  • Campcodes Complete Online Learning Management System 1.0
  • Systems utilizing the vulnerable Crud_model.php component
  • Web servers hosting the affected OLMS application

Discovery Timeline

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

Technical Details for CVE-2026-5546

Vulnerability Analysis

The vulnerability exists in the add_lesson function of the Campcodes Complete Online Learning Management System. This function handles file uploads for lesson content but fails to implement proper validation controls on uploaded files. The lack of file type restrictions, extension validation, and content verification allows attackers with low-level privileges to upload malicious files to the web server.

The flaw is classified under CWE-284 (Improper Access Control), as the application does not properly restrict what types of files can be uploaded through the lesson creation functionality. Once a malicious file is uploaded, it can potentially be accessed directly through the web server, leading to remote code execution if the server processes the uploaded content.

Root Cause

The root cause of this vulnerability lies in the absence of proper file upload validation within the add_lesson function in /application/models/Crud_model.php. The application fails to:

  1. Validate file extensions against an allowlist of permitted types
  2. Verify file content matches the declared file type (MIME type validation)
  3. Sanitize or rename uploaded files to prevent direct execution
  4. Store uploaded files outside the web-accessible directory

This improper access control allows any file type to be uploaded and potentially executed on the server.

Attack Vector

The attack can be initiated remotely by any authenticated user with access to the lesson creation functionality. An attacker can craft a malicious request to the vulnerable endpoint, uploading a web shell or other malicious script disguised as legitimate lesson content.

The attack flow involves:

  1. Authenticating to the OLMS application with valid credentials
  2. Navigating to the lesson creation or upload functionality
  3. Uploading a malicious PHP file (e.g., web shell) instead of legitimate content
  4. Accessing the uploaded file directly via the web server to execute arbitrary commands

Technical details and proof-of-concept information are available in the GitHub CVE Repository and the VulDB Vulnerability Entry.

Detection Methods for CVE-2026-5546

Indicators of Compromise

  • Unexpected PHP, JSP, or executable files in lesson upload directories
  • Web shell signatures in uploaded content (e.g., eval(), system(), exec() functions)
  • Unusual HTTP requests to non-standard file paths within the OLMS application
  • Authentication logs showing access to lesson upload features followed by suspicious file access patterns

Detection Strategies

  • Monitor file system changes in the OLMS upload directories for non-standard file extensions
  • Implement web application firewall (WAF) rules to detect malicious file upload attempts
  • Review HTTP POST requests to /application/models/Crud_model.php for suspicious payloads
  • Deploy file integrity monitoring on the OLMS installation directory

Monitoring Recommendations

  • Enable verbose logging on the web server for all file upload operations
  • Configure SIEM alerts for new executable files appearing in web-accessible directories
  • Monitor outbound connections from the web server that may indicate command-and-control activity
  • Implement network traffic analysis to detect data exfiltration patterns

How to Mitigate CVE-2026-5546

Immediate Actions Required

  • Restrict access to the lesson upload functionality to trusted administrators only
  • Implement file extension allowlisting at the application and web server level
  • Move the OLMS installation behind a VPN or internal network if possible
  • Audit existing uploaded files for malicious content and remove any suspicious files

Patch Information

At the time of publication, no official patch has been released by Campcodes for this vulnerability. Organizations should monitor the CampCodes website for security updates and implement the workarounds described below until an official fix is available. Additional vulnerability details can be found in the VulDB submission.

Workarounds

  • Configure the web server to deny execution of scripts in upload directories (e.g., disable PHP parsing)
  • Implement a strict allowlist of permitted file extensions (e.g., only allow .pdf, .doc, .pptx)
  • Add server-side MIME type validation to verify uploaded file content matches expected types
  • Rename uploaded files to random strings and store original names in a database
  • Store uploaded files outside the web root directory and serve them through a controlled download script
bash
# Apache configuration to prevent script execution in upload directory
<Directory "/var/www/html/olms/uploads">
    php_admin_flag engine off
    AddHandler default-handler .php .phtml .php3 .php4 .php5
    Options -ExecCGI
    RemoveHandler .php .phtml .php3 .php4 .php5
</Directory>

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechCampcodes

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/VA:L/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityLow
  • CWE References
  • CWE-284
  • Technical References
  • GitHub CVE Repository

  • VulDB Submission #782291

  • VulDB Vulnerability #355310

  • VulDB CTI for #355310

  • CampCodes Security Blog
  • Related CVEs
  • CVE-2026-3984: Campcodes Athletic Meet System XSS Flaw

  • CVE-2026-3983: Campcodes Athletic Meet System XSS Flaw

  • CVE-2025-11422: Campcodes Voting System SQLi Vulnerability

  • CVE-2025-11064: Campcodes Online LMS SQLi 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