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

CVE-2026-3225: LearnPress WordPress LMS Auth Bypass Flaw

CVE-2026-3225 is an authentication bypass vulnerability in LearnPress WordPress LMS Plugin allowing authenticated attackers with Subscriber-level access to delete quiz answer options. This post covers technical details, affected versions, impact, and mitigation steps.

Published: March 27, 2026

CVE-2026-3225 Overview

The LearnPress – WordPress LMS Plugin for WordPress contains a Missing Authorization vulnerability (CWE-862) that allows authenticated attackers to delete quiz question answers without proper authorization checks. The vulnerability exists in the delete_question_answer() function within the EditQuestionAjax class, where the AbstractAjax::catch_lp_ajax() dispatcher verifies a wp_rest nonce but fails to perform a current_user_can() capability check. Additionally, the QuestionAnswerModel::delete() method only validates minimum answer counts without verifying user capabilities.

Critical Impact

Authenticated attackers with Subscriber-level access can delete answer options from any quiz question on the site, potentially disrupting educational content and learning assessments.

Affected Products

  • LearnPress – WordPress LMS Plugin versions up to and including 4.3.2.8

Discovery Timeline

  • 2026-03-23 - CVE CVE-2026-3225 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-3225

Vulnerability Analysis

This vulnerability is classified as Missing Authorization (CWE-862), a common weakness pattern where an application fails to verify that a user has the necessary permissions before performing a sensitive action. In the context of this WordPress plugin, the attack is network-accessible and requires only low-privilege authenticated access (Subscriber-level or above), making it relatively straightforward to exploit.

The vulnerability enables unauthorized modification of quiz data integrity without requiring any user interaction from the site administrator. While the confidentiality impact is minimal, the integrity of quiz content can be compromised, allowing malicious users to disrupt learning management system operations by removing answer choices from quizzes.

A proof-of-concept exploit is publicly available, increasing the risk of active exploitation in the wild. Organizations running affected versions should prioritize remediation.

Root Cause

The root cause lies in the architectural separation between authentication and authorization within the LearnPress AJAX handling mechanism. While the AbstractAjax::catch_lp_ajax() dispatcher correctly validates the wp_rest nonce (ensuring the request comes from a legitimate authenticated session), it fails to implement the critical current_user_can() check that WordPress provides for capability-based access control.

The QuestionAnswerModel::delete() method compounds this issue by only enforcing business logic validation (minimum answer counts) without any user capability verification. This means any authenticated user, regardless of their role, can invoke the deletion functionality as long as they possess a valid nonce.

Attack Vector

The attack leverages the network-accessible AJAX endpoint exposed by the LearnPress plugin. An attacker must first authenticate to the WordPress site with at least Subscriber-level privileges. Once authenticated, the attacker can:

  1. Obtain a valid wp_rest nonce through normal site interaction
  2. Craft AJAX requests targeting the delete_question_answer() function in the EditQuestionAjax class
  3. Specify arbitrary quiz question IDs and answer option IDs in the request
  4. Successfully delete answer options from any quiz, bypassing all authorization checks

The attack requires no user interaction from administrators and can be automated to systematically remove answers across multiple quizzes, potentially causing widespread disruption to educational content.

For detailed technical analysis of the vulnerable code paths, refer to the WordPress LearnPress AJAX Abstract, Edit Question AJAX handler, and Question Answer Model.

Detection Methods for CVE-2026-3225

Indicators of Compromise

  • Unusual AJAX requests to LearnPress endpoints from low-privilege user accounts (Subscriber, Customer roles)
  • Database logs showing deletion of quiz answer records without corresponding admin activity
  • Web server logs containing repeated POST requests to /wp-admin/admin-ajax.php with lp_ajax action parameters from non-administrative users
  • Unexpected reduction in quiz answer options without administrative changes

Detection Strategies

  • Monitor WordPress AJAX activity logs for delete_question_answer actions originating from non-admin user sessions
  • Implement file integrity monitoring on LearnPress plugin files to detect unauthorized modifications
  • Configure web application firewall (WAF) rules to flag suspicious patterns in LearnPress AJAX requests
  • Review user activity logs for Subscriber-level accounts making administrative-type plugin requests

Monitoring Recommendations

  • Enable detailed WordPress activity logging with plugins that track AJAX calls and database modifications
  • Set up alerts for quiz content modifications performed by users without appropriate capabilities
  • Regularly audit quiz content integrity to detect unauthorized deletions
  • Monitor for known PoC exploit patterns in web traffic

How to Mitigate CVE-2026-3225

Immediate Actions Required

  • Update LearnPress plugin to version 4.3.3 or later immediately
  • Audit recent quiz modifications for unauthorized deletions, particularly from Subscriber-level accounts
  • Review user accounts for suspicious activity patterns and consider revoking access for compromised accounts
  • Temporarily restrict Subscriber registration if immediate patching is not possible

Patch Information

The vulnerability has been addressed in LearnPress version 4.3.3. The patch introduces proper capability checks using WordPress's current_user_can() function in the EditQuestionAjax class. Site administrators should update through the WordPress plugin repository or download the patched version directly.

For detailed information on the fix, see the version changeset between 4.3.2.8 and 4.3.3. Additional vulnerability details are available in the Wordfence Vulnerability Report.

Workarounds

  • Restrict user registration to prevent unauthorized Subscriber account creation until patching is complete
  • Implement a Web Application Firewall (WAF) rule to block AJAX requests targeting LearnPress quiz modification endpoints from non-admin users
  • Use a security plugin to enforce additional capability checks on LearnPress AJAX endpoints
  • Disable the LearnPress plugin temporarily if quizzes are not actively in use and immediate patching is not feasible
bash
# WordPress CLI command to update LearnPress plugin
wp plugin update learnpress --version=4.3.3

# Verify installed version after update
wp plugin list --name=learnpress --fields=name,version,status

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechLearnpress

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

  • Known ExploitedYes
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • WordPress LearnPress AJAX Abstract

  • WordPress LearnPress Edit Question AJAX

  • WordPress LearnPress Question Answer Model

  • WordPress LearnPress Version Change Log

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-25002: LearnPress Sepay Auth Bypass Vulnerability

  • CVE-2026-3226: LearnPress WordPress Plugin Auth Bypass Flaw

  • CVE-2026-1787: LearnPress Auth Bypass Vulnerability

  • CVE-2025-13964: LearnPress WordPress Auth Bypass Flaw
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