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

CVE-2026-3360: Tutor LMS Auth Bypass Vulnerability

CVE-2026-3360 is an authentication bypass flaw in Tutor LMS for WordPress that lets unauthenticated attackers overwrite billing profiles via IDOR. This article covers the technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-3360 Overview

The Tutor LMS – eLearning and online course solution plugin for WordPress contains an Insecure Direct Object Reference (IDOR) vulnerability in all versions up to and including 3.9.7. This security flaw exists within the pay_incomplete_order() function, which lacks proper authentication and authorization checks. The vulnerability allows unauthenticated attackers to manipulate billing profile data of any user who has an incomplete manual order on the platform.

The function accepts an attacker-controlled order_id parameter and uses it to look up order data, then writes billing fields to the order owner's profile ($order_data->user_id) without verifying the requester's identity or ownership. Because the Tutor nonce (_tutor_nonce) is exposed on public frontend pages, attackers can craft malicious POST requests with guessed or enumerated order_id values to overwrite victim billing profiles.

Critical Impact

Unauthenticated attackers can overwrite billing profile information (name, email, phone, address) of any user with incomplete manual orders, potentially leading to account takeover, phishing attacks, or financial fraud.

Affected Products

  • Tutor LMS WordPress Plugin versions up to and including 3.9.7
  • WordPress sites running vulnerable Tutor LMS plugin versions
  • eLearning platforms built with Tutor LMS ecommerce functionality

Discovery Timeline

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

Technical Details for CVE-2026-3360

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization) and represents a classic Insecure Direct Object Reference pattern. The pay_incomplete_order() function in the CheckoutController.php file processes payment completion requests without validating whether the requesting user has permission to modify the specified order or its associated user profile.

The attack exploits the lack of ownership verification between the authenticated session (or lack thereof) and the order being manipulated. When processing billing updates, the function directly uses the user_id from the order record to update profile data, trusting that the request comes from the legitimate order owner.

A key enabler of this attack is the exposure of the _tutor_nonce token on public-facing frontend pages. While nonces typically provide CSRF protection, their public availability combined with missing authorization checks renders them ineffective as a security control in this context.

Root Cause

The root cause is missing authentication and authorization validation in the pay_incomplete_order() function. The code fails to:

  1. Verify that the requester is authenticated
  2. Confirm that the authenticated user owns or has permission to access the specified order
  3. Validate that the requester should be allowed to modify billing profile data for the order's associated user

The function blindly trusts the order_id parameter provided in the request and updates the corresponding user's profile without any ownership checks.

Attack Vector

The attack is executed remotely over the network and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying WordPress sites running vulnerable Tutor LMS versions
  2. Extracting the publicly exposed _tutor_nonce value from frontend pages
  3. Enumerating or guessing valid order_id values for incomplete manual orders
  4. Sending crafted POST requests with malicious billing data to overwrite victim profiles

The vulnerability mechanism centers on the pay_incomplete_order() function accepting user-controlled input without proper validation. When an attacker submits a POST request with a valid order_id belonging to another user, the function retrieves the order data and uses the $order_data->user_id to update billing fields directly on the victim's profile. For detailed technical analysis, see the Wordfence Vulnerability Analysis and the CheckoutController source code.

Detection Methods for CVE-2026-3360

Indicators of Compromise

  • Unusual POST requests to Tutor LMS checkout endpoints with varying order_id parameters from single IP addresses
  • Unexpected changes to user billing profiles without corresponding user login activity
  • Sequential or patterned order_id values in request logs suggesting enumeration attempts
  • Billing profile modifications for users with incomplete manual orders during suspicious timeframes

Detection Strategies

  • Monitor web application logs for POST requests targeting checkout functions with anomalous patterns
  • Implement rate limiting on order-related API endpoints to detect and block enumeration attempts
  • Deploy Web Application Firewall (WAF) rules to detect IDOR attack patterns against Tutor LMS endpoints
  • Review user profile change logs for billing updates not correlated with authenticated user sessions

Monitoring Recommendations

  • Enable detailed logging for all Tutor LMS ecommerce transactions and profile modifications
  • Set up alerts for bulk or rapid order_id parameter changes in checkout requests
  • Monitor for unauthenticated requests attempting to access order completion endpoints
  • Track user profile changes and flag modifications made without corresponding login events

How to Mitigate CVE-2026-3360

Immediate Actions Required

  • Update Tutor LMS plugin to a version newer than 3.9.7 that contains the security fix
  • Audit user billing profiles for unauthorized modifications, particularly for accounts with incomplete orders
  • Review web server logs for potential exploitation attempts and block suspicious source IPs
  • Consider temporarily disabling the manual order payment feature until patching is complete

Patch Information

The vulnerability has been addressed in the Tutor LMS plugin. The security fix can be reviewed in the WordPress Tutor Changeset 3496394, which implements proper authorization checks in the CheckoutController.php file. Site administrators should update to the latest version of the Tutor LMS plugin through the WordPress admin dashboard or by downloading the patched version from the WordPress plugin repository.

Workarounds

  • Implement WAF rules to block unauthenticated requests to the pay_incomplete_order endpoint
  • Restrict access to checkout-related URLs at the web server level for non-authenticated users
  • Consider using a security plugin to add additional authorization layers to sensitive Tutor LMS functions
  • Monitor and manually review all incomplete manual orders until the patch can be applied
bash
# Example .htaccess rule to restrict checkout endpoint access
# Add to WordPress root .htaccess file as temporary mitigation
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} tutor.*checkout [NC]
RewriteCond %{HTTP:Authorization} ^$
RewriteRule ^ - [F,L]
</IfModule>

Disclaimer: 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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.12%

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

  • WordPress Tutor CheckoutController Reference

  • WordPress Tutor CheckoutController Reference

  • WordPress Tutor CheckoutController Code

  • WordPress Tutor Changeset 3496394

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-5502: Tutor LMS Auth Bypass Vulnerability

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

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

  • CVE-2026-3358: Tutor 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