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

CVE-2026-4365: LearnPress WordPress Auth Bypass Flaw

CVE-2026-4365 is an authentication bypass vulnerability in the LearnPress WordPress plugin that allows unauthenticated attackers to delete quiz answers. This article covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-4365 Overview

The LearnPress plugin for WordPress contains a critical authorization bypass vulnerability that enables unauthenticated attackers to delete quiz answer options without any capability or ownership checks. The vulnerability exists in the delete_question_answer() function across all versions up to and including 4.3.2.8.

The core issue stems from an architectural security flaw where the plugin exposes a wp_rest nonce publicly in frontend HTML through the lpData JavaScript object, accessible to unauthenticated visitors. This nonce serves as the sole security gate for the lp-load-ajax AJAX dispatcher, and the delete_question_answer action performs no additional capability or ownership verification.

Critical Impact

Unauthenticated attackers can delete any quiz answer option across the WordPress site by sending a crafted POST request with a publicly available nonce, leading to complete destruction of educational content and assessment data.

Affected Products

  • LearnPress WordPress Plugin versions up to and including 4.3.2.8
  • WordPress installations using vulnerable LearnPress versions
  • Learning Management System (LMS) sites built with LearnPress

Discovery Timeline

  • 2026-04-14 - CVE CVE-2026-4365 published to NVD
  • 2026-04-14 - Last updated in NVD database

Technical Details for CVE-2026-4365

Vulnerability Analysis

This vulnerability represents a classic Missing Authorization (CWE-862) flaw with severe consequences for WordPress-based learning management systems. The vulnerability enables complete bypass of WordPress's standard capability system, allowing any unauthenticated user to perform privileged administrative actions.

The attack is particularly dangerous because it requires no authentication and can be executed remotely over the network. The publicly exposed nonce in the lpData JavaScript object—intended for legitimate AJAX functionality—becomes the single point of failure in the authorization chain. When combined with the absence of capability checks in the delete_question_answer action handler, attackers gain unrestricted ability to delete quiz content.

The integrity and availability impact is significant: attackers can systematically destroy quiz data, rendering courses unusable and potentially corrupting the entire educational content database. While confidentiality is not directly impacted, the data destruction capabilities make this a critical concern for any organization using LearnPress.

Root Cause

The root cause is twofold: first, the exposure of security nonces in publicly accessible JavaScript objects (lpData) in the frontend HTML, and second, the complete absence of WordPress capability checks or ownership verification in the delete_question_answer() function. The AJAX dispatcher at lp-load-ajax relies solely on nonce verification, which becomes meaningless when the nonce is publicly available to all site visitors.

Attack Vector

An attacker can exploit this vulnerability by:

  1. Visiting any page on a WordPress site running the vulnerable LearnPress plugin
  2. Extracting the wp_rest nonce from the publicly accessible lpData JavaScript object in the page source
  3. Crafting a malicious POST request to the lp-load-ajax endpoint with the delete_question_answer action
  4. Including the extracted nonce and target answer option ID in the request payload

The attack can be automated to enumerate and delete all quiz answer options across the site, effectively destroying course assessment functionality.

For technical implementation details, refer to the WordPress LearnPress Ajax Code which shows the AJAX dispatcher implementation, and the WordPress LearnPress Edit Question Code which contains the vulnerable function. The nonce exposure can be examined in the WordPress LearnPress Asset Class Code.

Detection Methods for CVE-2026-4365

Indicators of Compromise

  • Unexpected POST requests to /wp-admin/admin-ajax.php with action parameter lp-load-ajax and sub-action delete_question_answer from unauthenticated sessions
  • Unusual volume of quiz answer deletions without corresponding administrative user activity
  • Web server logs showing repeated AJAX calls to LearnPress endpoints from external IP addresses
  • Missing or corrupted quiz data in the WordPress database without legitimate administrative changes

Detection Strategies

  • Monitor web application firewall (WAF) logs for POST requests targeting LearnPress AJAX endpoints without valid session cookies
  • Implement database activity monitoring to detect unauthorized DELETE operations on LearnPress quiz-related tables
  • Configure intrusion detection systems to alert on patterns of unauthenticated AJAX requests to lp-load-ajax
  • Review WordPress admin activity logs for quiz content modifications that don't correlate with logged-in user actions

Monitoring Recommendations

  • Enable detailed logging for all LearnPress plugin AJAX operations
  • Set up alerts for quiz answer deletion events that occur outside of normal administrative sessions
  • Monitor for anomalous traffic patterns to WordPress AJAX endpoints from unauthenticated sources
  • Implement rate limiting on AJAX endpoints to slow potential automated exploitation attempts

How to Mitigate CVE-2026-4365

Immediate Actions Required

  • Update LearnPress plugin to the latest patched version immediately if available
  • Implement Web Application Firewall (WAF) rules to block unauthenticated requests to the delete_question_answer AJAX action
  • Backup all quiz and course data before applying mitigations to ensure recovery capability
  • Temporarily disable the LearnPress plugin if no patch is available and the site is critical

Patch Information

Review the Wordfence Vulnerability Report for the latest patch status and remediation guidance. Update to a version higher than 4.3.2.8 when the vendor releases a security patch that implements proper capability checks on the delete_question_answer() function.

Workarounds

  • Implement server-level access controls to restrict access to LearnPress AJAX endpoints for unauthenticated users
  • Deploy a WAF rule to validate that requests to sensitive LearnPress actions originate from authenticated administrative sessions
  • Consider temporarily disabling quiz functionality if the plugin cannot be immediately updated
  • Use WordPress security plugins to add additional authorization layers on AJAX handlers
bash
# Example .htaccess rule to restrict LearnPress AJAX access
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} ^/wp-admin/admin-ajax\.php
RewriteCond %{QUERY_STRING} action=lp-load-ajax [NC,OR]
RewriteCond %{HTTP:X-Requested-With} !XMLHttpRequest
RewriteCond %{HTTP_COOKIE} !wordpress_logged_in
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/TechLearnpress

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-862
  • Technical References
  • WordPress LearnPress Ajax Code

  • WordPress LearnPress Edit Question Code

  • WordPress LearnPress Asset Class Code

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

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

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

  • CVE-2026-1787: LearnPress 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