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
    • 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-24900

CVE-2026-24900: MarkUs Information Disclosure Vulnerability

CVE-2026-24900 is an information disclosure flaw in MarkUs that allows unauthorized access to student submission files. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 13, 2026

CVE-2026-24900 Overview

CVE-2026-24900 is an Insecure Direct Object Reference (IDOR) vulnerability in MarkUs, a web application used for the submission and grading of student assignments. The vulnerability exists in versions prior to 2.9.1 where the select_file_id parameter in the submissions endpoint was not properly scoped to the requesting user, allowing authenticated users to access arbitrary submission file contents by manipulating the file ID.

Critical Impact

Authenticated users can access confidential student submission files they are not authorized to view, potentially exposing sensitive academic work, personal information, and graded content.

Affected Products

  • MarkUs versions prior to 2.9.1

Discovery Timeline

  • 2026-02-09 - CVE CVE-2026-24900 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2026-24900

Vulnerability Analysis

This vulnerability is classified under CWE-639 (Authorization Bypass Through User-Controlled Key), a type of broken access control flaw. The application fails to verify that the authenticated user has proper authorization to access the requested submission file before serving its contents.

The vulnerable endpoint courses/<:course_id>/assignments/<:assignment_id>/submissions/html_content accepts a select_file_id parameter to retrieve SubmissionFile objects. Because this parameter was not validated against the requesting user's permissions, any authenticated user could enumerate file IDs and retrieve submission contents belonging to other users.

Root Cause

The root cause lies in the find_appropriate_grouping helper method in app/helpers/submissions_helper.rb. The original implementation used Grouping.find(params[:grouping_id]) which performed a direct database lookup without scoping the query to the current assignment. This allowed instructors and TAs to access groupings from any assignment, not just the one in context. Additionally, the html_content? action in the submission policy was aliased to view_files? without proper authorization checks.

Attack Vector

The attack can be performed remotely over the network by any authenticated user. An attacker with valid credentials to the MarkUs application can craft requests to the submissions endpoint with arbitrary select_file_id values, iterating through IDs to discover and retrieve submission files they should not have access to. The attack requires low complexity and no user interaction beyond authentication.

ruby
# Vulnerable code in app/helpers/submissions_helper.rb
# The original implementation did not scope groupings to the assignment:

def find_appropriate_grouping(assignment_id, params)
  if current_role.instructor? || current_role.ta?
    Grouping.find(params[:grouping_id])  # No scoping - allows access to any grouping
  else
    current_role.accepted_grouping_for(assignment_id)
  end
end

# Fixed code scopes the query to the assignment:

def find_appropriate_grouping(assignment, params)
  if current_role.instructor? || current_role.ta?
    assignment.groupings.find_by(id: params[:grouping_id])  # Properly scoped
  else
    current_role.accepted_grouping_for(assignment.id)
  end
end

Source: GitHub Commit Reference

Detection Methods for CVE-2026-24900

Indicators of Compromise

  • Unusual patterns of requests to /courses/*/assignments/*/submissions/html_content with sequential or random select_file_id parameters
  • Single user accounts accessing an abnormally high number of submission files in a short time period
  • Access logs showing requests for submission files from groupings not associated with the requesting user's courses or roles

Detection Strategies

  • Implement anomaly detection on submission file access patterns to identify enumeration attempts
  • Monitor for authentication sessions accessing files across multiple unrelated assignments or courses
  • Configure web application firewalls to flag rapid sequential requests with incrementing ID parameters

Monitoring Recommendations

  • Enable detailed logging for all submission file access requests including user ID, file ID, and timestamp
  • Set up alerts for access denied events that may indicate failed exploitation attempts
  • Review access logs periodically for users accessing files outside their expected scope

How to Mitigate CVE-2026-24900

Immediate Actions Required

  • Upgrade MarkUs to version 2.9.1 or later immediately
  • Review access logs to identify any potential exploitation of this vulnerability prior to patching
  • Notify affected users if unauthorized access to their submissions is detected

Patch Information

The vulnerability has been fixed in MarkUs version 2.9.1. The fix modifies the find_appropriate_grouping method to properly scope grouping lookups to the current assignment, and removes the html_content? action from the overly permissive view_files? alias in the submission policy. Administrators should upgrade by pulling the latest release from the MarkUs v2.9.1 release or applying the specific security patch commit.

Workarounds

  • If immediate upgrade is not possible, implement additional access control checks at the web server or reverse proxy level to validate file access requests
  • Temporarily disable the html_content endpoint if not critical to operations until the patch can be applied
  • Consider implementing rate limiting on submission file access endpoints to reduce the impact of enumeration attacks
bash
# Example: Upgrade MarkUs to patched version
cd /path/to/markus
git fetch origin
git checkout v2.9.1
bundle install
rails db:migrate
rails server restart

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechMarkus

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

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

  • GitHub Release v2.9.1

  • GitHub Security Advisory GHSA-56gh-8hmq-7q88
  • Related CVEs
  • CVE-2026-27807: Markusproject Markus XXE Vulnerability

  • CVE-2026-28405: MarkUs Web Application XSS Vulnerability

  • CVE-2026-25057: MarkUs Path Traversal 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