Authorization Bypass (IDOR)Weakness · CWE-639

CVE-2026-6965

MEDIUM · 5.3 CVSS v3.1 Published 2026-05-13
Mitigation only
No fix yet — a mitigation exists. There is no fixed release. A documented workaround reduces exposure in the meantime.
See remediation →
62/100
Remediation priority · Elevated
Remotely reachable No privileges Zero-click

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
The Tutor LMS – eLearning and online course solution plugin for WordPress is vulnerable to Insecure Direct Object Reference in versions up to and including 3.9.9. This is due to the `get_course_id_by()` function unconditionally trusting the user-supplied `course` GET parameter as the authoritative course ID for content ownership lookups, which is then consumed by `can_user_manage()`, the plugin's sole authorization gate for instructor-level operations, causing it to evaluate instructor membership against the attacker-controlled course rather than the course that actually owns the target content object. This makes it possible for authenticated attackers, with instructor-level access and above, to perform unauthorized operations on any other instructor's course content, including permanently deleting lessons, assignments, quizzes (with cascading deletion of all student attempt data), topics, announcements, and Q&A threads, as well as creating or modifying lessons, topics, and announcements in victim courses, manipulating student quiz grades, and reading unpublished lesson and quiz content.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

The Tutor LMS plugin for WordPress contains an IDOR vulnerability where the `get_course_id_by()` function blindly trusts the user-supplied `course` GET parameter as the authoritative course ID. This value is passed to `can_user_manage()`, the plugin's sole authorization gate, causing instructor membership to be evaluated against the attacker-controlled course instead of the actual content owner's course. This allows authenticated instructors to perform unauthorized operations on any instructor's course content.

MitigationUpdate to Tutor LMS version 3.10.0 or later which contains proper authorization validation. Until patched, limit instructor-level access and monitor administrative logs for unauthorized content modifications.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Privileges
None
User interaction
None
Scope
Unchanged
Confidentiality
None
Integrity
Low
Availability
None

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Confirm Tutor LMS installation and version
    Locate the Tutor LMS plugin in WordPress (wp-content/plugins/tutor) and read the main plugin file header for the Version string, or query the wp_options table for the active_plugins entry
    Affected if Tutor LMS is installed and the version is below 3.10.0 (e.g., 3.0.x, 3.1.x, etc.)
  2. Identify vulnerable code pattern
    Search the Tutor LMS plugin files for the get_course_id_by() function and verify it references $_GET['course'] without sanitization, or grep for 'course' GET parameter usage in course-related PHP handlers
    Affected if The code reads $_GET['course'] directly and passes it to authorization checks without validating it against the authenticated user's actual course ownership
  3. Verify instructor role exists
    Check WordPress user roles via admin panel or wp_usermeta table to confirm users with 'tutor_instructor' role exist who could exploit this flaw
    Affected if At least one user with instructor-level access exists in the system
  4. Check can_user_manage authorization gate
    Examine the can_user_manage() function implementation in the plugin to confirm it accepts the user-supplied course ID parameter for authorization decisions
    Affected if The authorization function uses the attacker-controlled course ID parameter rather than querying the actual content owner from the database

You are affected if Tutor LMS version is below 3.10.0, the plugin handles course IDs via GET parameters, and instructor-level users exist who could manipulate the course parameter to access unauthorized content.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Mitigation available No clean upgrade yet — mitigate in the meantime
Mitigation

Update to Tutor LMS version 3.10.0 or later which contains proper authorization validation. Until patched, limit instructor-level access and monitor administrative logs for unauthorized content modifications.

Recommended fix Moderate confidence

Version greater than 3.9.9 (specific fixed version should be confirmed from vendor release notes)

  1. 1. Identify the currently installed Tutor LMS version in WordPress admin under Plugins > Installed Plugins
  2. 2. Navigate to the official WordPress plugin repository or the plugin vendor's website to check for the latest stable release
  3. 3. Since the vulnerability affects versions up to and including 3.9.9, upgrade to a version newer than 3.9.9 that includes the security fix
  4. 4. Before upgrading, backup the WordPress database and files
  5. 5. Test the upgrade in a staging environment if possible, particularly for instructor-level functionality (course creation, lesson management, quiz handling)
  6. 6. After upgrade, verify that the `can_user_manage()` function now properly validates course ownership rather than trusting user-supplied GET parameters
Caveat Review vendor release notes for any changes to instructor permissions or course management features that may affect workflow

Generated from the published advisory — verify against the referenced sources before acting.

Have this fixed Scoped from the published advisory
  • Consultation2.0 h
  • Implementation4.0 h
  • Testing3.0 h
  • Review / QA2.0 h
11.0 hours of engineering $1,930
Get help mitigating

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $3,088.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2026-6965 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2026-6965 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data