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

CVE-2026-6965: Tutor LMS Auth Bypass Vulnerability

CVE-2026-6965 is an authentication bypass flaw in Tutor LMS for WordPress that allows instructors to manipulate other instructors' course content. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-6965 Overview

CVE-2026-6965 is an Insecure Direct Object Reference (IDOR) vulnerability [CWE-639] in the Tutor LMS – eLearning and online course solution plugin for WordPress. The flaw affects all versions up to and including 3.9.9. The plugin's get_course_id_by() function trusts the user-supplied course GET parameter as the authoritative course ID for ownership lookups. This value is then consumed by can_user_manage(), the plugin's sole authorization gate for instructor-level operations. Authenticated attackers with instructor-level privileges can bypass authorization and perform unauthorized operations on other instructors' course content.

Critical Impact

Authenticated instructors can permanently delete lessons, quizzes, assignments, and Q&A threads, modify victim course content, manipulate student grades, and read unpublished content across any other instructor's course.

Affected Products

  • Tutor LMS – eLearning and online course solution plugin for WordPress (versions ≤ 3.9.9)
  • WordPress sites with instructor-level user roles configured via Tutor LMS
  • Multi-instructor learning platforms using Tutor LMS for course delivery

Discovery Timeline

  • 2026-05-13 - CVE-2026-6965 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-6965

Vulnerability Analysis

The vulnerability is an Insecure Direct Object Reference flaw in the Tutor LMS plugin's authorization model. The plugin centralizes instructor permission checks in a single function, can_user_manage(), which verifies whether the current user is an instructor for a specified course. However, the course ID consumed by this gate is resolved through get_course_id_by(), which reads the course GET parameter directly from the request without cross-validating it against the parent course of the target content object.

An authenticated instructor can therefore supply a course parameter referencing one of their own courses while operating on lessons, quizzes, topics, announcements, or Q&A threads that actually belong to a different instructor's course. The authorization check succeeds because the attacker legitimately manages the course they named, not the course that owns the target object.

Root Cause

The root cause is a missing object-to-owner relationship check. The get_course_id_by() helper used in classes/Ajax.php, classes/Lesson.php, classes/Quiz.php, classes/Q_And_A.php, classes/Announcements.php, classes/Course.php, and classes/Utils.php unconditionally trusts the request-supplied course identifier. The plugin never reconciles the supplied course ID with the actual parent course derived from the target lesson, quiz, or topic ID, allowing the authorization gate to be evaluated against an attacker-controlled context.

Attack Vector

Exploitation requires authenticated access at instructor level or above. The attacker issues AJAX requests to vulnerable Tutor LMS endpoints — for example, lesson deletion, quiz modification, announcement creation, or Q&A thread removal — and supplies two object identifiers: the course parameter referencing a course they own, and a target object ID (lesson, quiz, topic, announcement, or thread) belonging to a victim course. The plugin authorizes the action against the attacker-owned course and executes the operation against the victim object. Cascading deletions on quizzes also remove associated student attempt records.

Refer to the source for the vulnerable function locations: WordPress Tutor Ajax Class, WordPress Tutor Lesson Class, WordPress Tutor Quiz Class, and WordPress Tutor Utils Class.

// No verified exploit code is published.
// Conceptually: authenticated instructor sends an AJAX request such as
// POST /wp-admin/admin-ajax.php
// action=<vulnerable_tutor_action>&course=<attacker_owned_course_id>&<target_object_id>=<victim_object_id>
// can_user_manage() evaluates membership against attacker_owned_course_id and authorizes the action.

Detection Methods for CVE-2026-6965

Indicators of Compromise

  • Unexpected deletion of lessons, quizzes, assignments, topics, announcements, or Q&A threads in instructor-owned courses.
  • WordPress audit log entries showing content modifications by instructor accounts not associated with the affected course.
  • Student quiz attempt records disappearing simultaneously with quiz object deletions.
  • Unexplained grade changes on student quiz submissions performed by accounts that do not own the parent course.

Detection Strategies

  • Review web server access logs for admin-ajax.php requests where the course parameter and the target object's actual parent course ID do not match.
  • Correlate WordPress user role data with Tutor LMS course ownership tables to flag write operations against content the requesting instructor does not own.
  • Monitor database deletion events on Tutor LMS tables (tutor_quiz_attempts, posts of type lesson, tutor_quiz, tutor_assignments, tutor_announcements) initiated by non-owner accounts.

Monitoring Recommendations

  • Enable a WordPress audit logging plugin to record content create, update, and delete actions with originating user IDs and IP addresses.
  • Alert on bursts of Tutor LMS AJAX actions originating from a single instructor account targeting multiple distinct courses within a short time window.
  • Periodically reconcile course-content ownership in the database to identify objects modified by users outside the instructor list.

How to Mitigate CVE-2026-6965

Immediate Actions Required

  • Update the Tutor LMS plugin to a version newer than 3.9.9 that includes the fix referenced in the WordPress Tutor Changeset.
  • Audit instructor accounts and remove or downgrade any that are inactive, untrusted, or unnecessary.
  • Review recent course content changes, deletions, and grade adjustments to identify potential abuse before patching.

Patch Information

The vendor addressed the IDOR by hardening course ID resolution. Reference the Wordfence Vulnerability Intel advisory and the upstream commit in the WordPress Tutor Changeset. Apply the latest Tutor LMS release through the WordPress admin dashboard or via WP-CLI.

Workarounds

  • Temporarily restrict the instructor role to trusted users only until the patched version is deployed.
  • Deploy a Web Application Firewall (WAF) rule that inspects Tutor LMS AJAX actions and rejects requests where the course parameter does not match the parent course of the supplied target object ID.
  • Take a full database backup before patching so that any unauthorized deletions discovered post-update can be recovered.
bash
# Update Tutor LMS via WP-CLI to the latest patched release
wp plugin update tutor --path=/var/www/html

# Verify installed version is greater than 3.9.9
wp plugin get tutor --field=version --path=/var/www/html

# List users with instructor role to review access
wp user list --role=tutor_instructor --path=/var/www/html

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechTutor Lms

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Technical References
  • WordPress Tutor Ajax Class

  • WordPress Tutor Ajax Class

  • WordPress Tutor Ajax Class

  • WordPress Tutor Announcements Class

  • WordPress Tutor Course Class

  • WordPress Tutor Course Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Utils Class

  • WordPress Tutor Utils Class

  • WordPress Tutor Ajax Class

  • WordPress Tutor Ajax Class

  • WordPress Tutor Ajax Class

  • WordPress Tutor Announcements Class

  • WordPress Tutor Course Class

  • WordPress Tutor Course Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Utils Class

  • WordPress Tutor Utils Class

  • WordPress Tutor Ajax Class

  • WordPress Tutor Ajax Class

  • WordPress Tutor Ajax Class

  • WordPress Tutor Announcements Class

  • WordPress Tutor Course Class

  • WordPress Tutor Course Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Lesson Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Q&A Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Quiz Class

  • WordPress Tutor Utils Class

  • WordPress Tutor Utils Class

  • WordPress Tutor Changeset

  • Wordfence Vulnerability Intel
  • Related CVEs
  • CVE-2026-23799: Tutor LMS Authorization Bypass Vulnerability

  • CVE-2026-40740: Tutor LMS Authorization Bypass Vulnerability

  • CVE-2026-5502: Tutor LMS Auth Bypass Vulnerability

  • CVE-2026-3360: Tutor LMS Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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