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

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

CVE-2026-3226 is an authentication bypass vulnerability in LearnPress WordPress LMS Plugin allowing authenticated users to trigger unauthorized email notifications. This post covers technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-3226 Overview

The LearnPress – WordPress LMS Plugin for WordPress contains a missing authorization vulnerability that allows authenticated attackers to trigger unauthorized email notifications. The vulnerability exists in all 10 functions within the SendEmailAjax class in versions up to and including 4.3.2.8. The AbstractAjax::catch_lp_ajax() dispatcher verifies a wp_rest nonce but fails to perform a current_user_can() capability check before dispatching to handler functions. Since the wp_rest nonce is embedded in frontend JavaScript for all authenticated users, attackers with Subscriber-level access or higher can exploit this flaw.

Critical Impact

Authenticated attackers with minimal privileges can trigger arbitrary email notifications to administrators, instructors, and users, enabling email flooding, social engineering campaigns, and impersonation of administrative decisions regarding instructor requests.

Affected Products

  • LearnPress – WordPress LMS Plugin versions up to and including 4.3.2.8
  • WordPress installations running vulnerable LearnPress versions
  • LMS platforms utilizing LearnPress for course management

Discovery Timeline

  • 2026-03-12 - CVE CVE-2026-3226 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-3226

Vulnerability Analysis

This vulnerability represents a classic Missing Authorization flaw (CWE-862) in the LearnPress plugin's AJAX handling mechanism. The core issue lies in the architectural design of the AbstractAjax class, which implements nonce verification without corresponding capability checks.

When a request is received, the catch_lp_ajax() method validates the wp_rest nonce to prevent cross-site request forgery attacks. However, nonce verification alone only confirms that the request originated from a logged-in user on the site—it does not verify whether that user should be authorized to perform the requested action.

The SendEmailAjax class contains 10 handler functions that can trigger various email notifications within the LMS ecosystem. These functions can send emails to administrators regarding instructor applications, course enrollment notifications, and other critical communications. Without proper current_user_can() checks, any authenticated user—including those with the lowest "Subscriber" role—can invoke these email functions.

Root Cause

The root cause is the absence of WordPress capability checks (current_user_can()) in the AbstractAjax::catch_lp_ajax() dispatcher method. The developers correctly implemented CSRF protection through nonce verification but failed to implement the complementary authorization layer. This creates a situation where authentication (proving who you are) is verified, but authorization (proving what you're allowed to do) is not enforced. The wp_rest nonce, being available to all authenticated users through frontend JavaScript at LP Assets Class, provides attackers with the necessary token to pass the nonce check.

Attack Vector

An attacker needs only a valid WordPress account with Subscriber-level privileges to exploit this vulnerability. The attack flow involves:

  1. Authenticating to the WordPress site as a Subscriber
  2. Extracting the wp_rest nonce from the frontend JavaScript
  3. Crafting AJAX requests to invoke any of the 10 SendEmailAjax handler functions
  4. Triggering email notifications to administrators, instructors, or other users at will

The vulnerability is exploited via network requests (CVSS Attack Vector: Network) and requires low privileges with no user interaction needed. While the integrity impact is limited, the potential for abuse through email flooding and social engineering is significant.

The vulnerable dispatcher logic can be examined in the AbstractAjax.php source file, while the email handler functions are defined in SendEmailAjax.php. The fix implemented in version 4.3.3 adds proper capability checks, as shown in the file changeset.

Detection Methods for CVE-2026-3226

Indicators of Compromise

  • Unusual volume of LearnPress AJAX requests from low-privileged user accounts
  • Spike in outgoing emails from LMS-related notification functions
  • Multiple AJAX calls to SendEmailAjax endpoints from Subscriber accounts
  • Complaints from administrators or instructors about unexpected email notifications

Detection Strategies

  • Monitor web server logs for repeated POST requests to LearnPress AJAX endpoints containing SendEmailAjax actions
  • Implement rate limiting on AJAX endpoints to detect potential email flooding attempts
  • Audit WordPress user activity logs for Subscribers making administrative-level requests
  • Review email server logs for unusual patterns in LMS notification delivery

Monitoring Recommendations

  • Configure Web Application Firewall (WAF) rules to flag excessive AJAX requests from low-privilege authenticated sessions
  • Enable WordPress audit logging plugins to track AJAX action invocations by user role
  • Set up alerts for unusual email volume originating from LearnPress notification functions
  • Monitor for social engineering attempts that may follow email impersonation attacks

How to Mitigate CVE-2026-3226

Immediate Actions Required

  • Update LearnPress plugin to version 4.3.3 or later immediately
  • Review recent email logs for signs of exploitation or abuse
  • Audit Subscriber and low-privilege user accounts for suspicious activity
  • Consider temporarily disabling email notifications if update cannot be applied immediately

Patch Information

The LearnPress development team has addressed this vulnerability in version 4.3.3. The patch adds proper current_user_can() capability checks to the AJAX handler functions in the SendEmailAjax class, ensuring that only users with appropriate permissions can trigger email notifications. The specific changes can be reviewed in the official changeset. For detailed vulnerability information, see the Wordfence Vulnerability Analysis.

Workarounds

  • Restrict user registration to prevent untrusted accounts from obtaining Subscriber access
  • Implement a WordPress security plugin with AJAX request monitoring capabilities
  • Use server-level rate limiting on AJAX endpoints to mitigate email flooding potential
  • Consider temporarily removing Subscriber role capabilities until patched
bash
# Verify LearnPress version via WP-CLI
wp plugin list --name=learnpress --fields=name,version,update_version

# Update LearnPress to the patched version
wp plugin update learnpress

# Alternatively, check for affected versions in the database
wp db query "SELECT option_value FROM wp_options WHERE option_name = 'learnpress_version';"

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 ExploitedNo
  • 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 AbstractAjax.php

  • WordPress LearnPress SendEmailAjax.php

  • WordPress LearnPress LP Assets Class

  • WordPress LearnPress File Changeset

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

  • CVE-2026-3225: LearnPress WordPress LMS 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