A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-7648

CVE-2026-7648: LearnPress WordPress LMS Payment Bypass

CVE-2026-7648 is a payment bypass vulnerability in LearnPress WordPress LMS plugin that allows authenticated attackers to enroll in paid courses for free. This article covers technical details, affected versions, and mitigation.

Published: May 14, 2026

CVE-2026-7648 Overview

CVE-2026-7648 is a payment bypass vulnerability in the LearnPress – WordPress LMS Plugin for Create and Sell Online Courses. The flaw affects all plugin versions up to and including 4.3.5. The REST API endpoint passes unsanitized request parameters to the add_to_cart() function, where array_merge() allows attacker-controlled values to overwrite hardcoded defaults. Authenticated users with subscriber-level access can enroll in any paid course free of charge by supplying a quantity value of zero. This forces the order total to calculate as $0 and bypasses payment gateway validation. The weakness is categorized under [CWE-639] (Authorization Bypass Through User-Controlled Key).

Critical Impact

Authenticated subscribers can bypass payment requirements and enroll in any paid course at no cost, causing direct revenue loss to LearnPress-powered learning platforms.

Affected Products

  • LearnPress – WordPress LMS Plugin for Create and Sell Online Courses
  • All versions up to and including 4.3.5
  • WordPress installations using the vulnerable REST API endpoint in class-lp-rest-courses-controller.php

Discovery Timeline

  • 2026-05-14 - CVE CVE-2026-7648 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-7648

Vulnerability Analysis

The vulnerability stems from improper handling of user-supplied request parameters in the LearnPress REST API endpoint. The frontend courses controller located at inc/rest-api/v1/frontend/class-lp-rest-courses-controller.php accepts an array of parameters from the client and forwards it directly to the cart logic in inc/cart/class-lp-cart.php. Inside add_to_cart(), PHP's array_merge() function combines hardcoded defaults with the attacker-supplied array. Because array_merge() allows later values to overwrite earlier ones, an attacker can override trusted server-side defaults, including the quantity field. The cart subtotal multiplies the course price by quantity, so a supplied quantity of zero produces a total of $0. The checkout flow then treats the order as fully paid and grants course enrollment without invoking any payment gateway.

Root Cause

The root cause is unsafe parameter merging that trusts client input over server-defined defaults. The REST endpoint performs no allowlist filtering on the parameters forwarded to add_to_cart(). Hardcoded cart defaults intended to remain immutable are exposed to client overwrites through array_merge(). This pattern aligns with [CWE-639], where authorization decisions rely on user-controlled keys.

Attack Vector

An attacker requires authenticated access at the subscriber role or higher, which is the default registration level on most LearnPress sites with open enrollment. The attacker sends a crafted POST request to the vulnerable REST API endpoint with a quantity parameter set to zero alongside the target course identifier. The server merges this value into the cart, calculates a zero total, and completes the order without payment. No user interaction is required beyond the attacker's own session. Specific request crafting details are available in the Wordfence Vulnerability Report and the WordPress LearnPress REST API Code.

Detection Methods for CVE-2026-7648

Indicators of Compromise

  • Completed LearnPress course orders with a total of $0.00 for courses that have a non-zero list price.
  • REST API requests to LearnPress course endpoints containing a quantity parameter equal to 0.
  • New course enrollments by subscriber-level accounts immediately after registration, without corresponding payment gateway transactions.
  • Discrepancies between LearnPress order counts and the merchant of record's payment processor records.

Detection Strategies

  • Review WordPress and LearnPress order logs for orders whose subtotal equals zero but reference paid courses.
  • Inspect web server access logs for POST requests to /wp-json/lp/v1/ course endpoints carrying quantity=0.
  • Correlate user registration timestamps with subsequent enrollment events to flag suspicious sequences.
  • Compare enrollment records against payment gateway settlement reports to identify unmatched enrollments.

Monitoring Recommendations

  • Enable verbose logging for the LearnPress REST API and retain logs for at least 90 days.
  • Alert on any HTTP request to LearnPress endpoints that contains numeric parameters set to zero or negative values.
  • Monitor user role changes and bulk enrollment activity originating from a single IP address.
  • Track week-over-week trends in zero-value orders to detect exploitation campaigns.

How to Mitigate CVE-2026-7648

Immediate Actions Required

  • Update the LearnPress plugin to a version newer than 4.3.5 as soon as the vendor publishes a fixed release.
  • Audit existing LearnPress orders for entries with a $0.00 total tied to paid courses and revoke unauthorized enrollments.
  • Restrict new user self-registration on WordPress sites that rely on LearnPress for paid content where feasible.
  • Rotate any administrative credentials if unauthorized course access is confirmed.

Patch Information

The vendor fix is tracked in the WordPress LearnPress Changeset. Site administrators should install the patched version of LearnPress through the WordPress plugin updater and verify the version reported in the WordPress admin matches a release later than 4.3.5. Refer to the Wordfence Vulnerability Report for the authoritative fix version.

Workarounds

  • Deploy a Web Application Firewall (WAF) rule that blocks requests to LearnPress REST endpoints containing quantity values less than or equal to zero.
  • Temporarily disable the LearnPress plugin on sites that cannot apply the patch immediately and serve paid courses through an alternate channel.
  • Force manual administrator approval for new course enrollments until the patch is deployed.
  • Restrict access to the LearnPress REST API to authenticated sessions that have completed a verified payment workflow.
bash
# Example WAF rule (ModSecurity) to block zero-quantity cart requests
SecRule REQUEST_URI "@contains /wp-json/lp/v1/" \
    "chain,phase:2,deny,status:403,id:1026764801,\
    msg:'LearnPress CVE-2026-7648 payment bypass attempt'"
    SecRule ARGS:quantity "@le 0" "t:none"

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

  • 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-639
  • Technical References
  • WordPress LearnPress Cart Code

  • WordPress LearnPress Cart Code

  • WordPress LearnPress REST API Code

  • WordPress LearnPress Cart Code

  • WordPress LearnPress Cart Code

  • WordPress LearnPress REST API Code

  • WordPress LearnPress Changeset

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-4365: LearnPress WordPress Auth Bypass Flaw

  • 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
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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