banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-1321

CVE-2026-1321: WordPress Membership Plugin Escalation Flaw

CVE-2026-1321 is a privilege escalation vulnerability in the Membership Plugin for WordPress that allows unauthenticated attackers to gain administrator access. This article covers technical details, affected versions, and patches.

Published: March 6, 2026

CVE-2026-1321 Overview

The Membership Plugin – Restrict Content plugin for WordPress contains a critical Privilege Escalation vulnerability affecting all versions up to and including 3.2.20. This vulnerability allows unauthenticated attackers to register with any membership level, including inactive levels that grant privileged WordPress roles such as Administrator, or paid levels that charge a sign-up fee.

Critical Impact

Unauthenticated attackers can bypass membership level validation to gain Administrator access or register for paid membership tiers without payment, leading to complete site compromise or financial loss.

Affected Products

  • Membership Plugin – Restrict Content plugin for WordPress versions up to and including 3.2.20
  • Partially patched in version 3.2.18, but full remediation requires version 3.2.21 or later

Discovery Timeline

  • 2026-03-05 - CVE CVE-2026-1321 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-1321

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization). The rcp_setup_registration_init() function processes user registration requests without properly validating the membership level specified in the rcp_level POST parameter. The function accepts any membership level ID without checking whether the level is currently active or whether payment is required for that level.

The secondary component of this vulnerability involves the add_user_role() method, which assigns the WordPress role configured on the membership level without performing any status checks. This creates a dangerous chain where an attacker can specify any membership level—including disabled premium tiers configured to grant Administrator roles—and receive the associated WordPress privileges upon registration.

The attack is particularly dangerous because many WordPress sites configure high-privilege membership levels for internal or testing purposes and deactivate them, assuming inactive levels cannot be accessed. This assumption is incorrect with vulnerable versions of this plugin.

Root Cause

The root cause is missing authorization checks in the registration flow. The rcp_setup_registration_init() function blindly trusts the rcp_level POST parameter value without validating:

  1. Whether the specified membership level is currently marked as active
  2. Whether payment is required and has been successfully processed
  3. Whether the membership level exists and is valid for public registration

The add_user_role() method compounds this issue by assigning WordPress roles based solely on the membership level configuration, without verifying the membership's payment or activation status.

Attack Vector

An unauthenticated attacker can exploit this vulnerability via network-based attacks against the WordPress registration endpoint. The attacker submits a crafted POST request to the registration handler with a manipulated rcp_level parameter pointing to a membership level configured with Administrator privileges.

The attack flow involves: (1) identifying the target site uses the Restrict Content plugin, (2) enumerating or guessing membership level IDs, (3) submitting a registration request with the privileged membership level ID, and (4) gaining the WordPress role associated with that membership level without proper authentication or payment.

For technical details on the vulnerable code paths, refer to the WordPress Registration Functions Reference and the RCP Registration Class.

Detection Methods for CVE-2026-1321

Indicators of Compromise

  • Unexpected user registrations with Administrator or other privileged roles
  • User accounts created with premium membership levels that have no associated payment records
  • Registration activity associated with inactive or disabled membership levels
  • Suspicious POST requests to registration endpoints containing manipulated rcp_level parameters

Detection Strategies

  • Monitor WordPress user creation events for accounts with Administrator privileges that lack corresponding admin creation logs
  • Review membership database tables for memberships created without payment transaction records
  • Implement web application firewall (WAF) rules to detect unusual rcp_level parameter values in registration requests
  • Audit user accounts created since the plugin was installed for unauthorized privilege assignments

Monitoring Recommendations

  • Enable detailed logging for all WordPress user registration and role assignment events
  • Configure alerts for new Administrator account creation outside of normal administrative workflows
  • Monitor the wp_usermeta table for role changes associated with new user registrations
  • Review RCP membership logs for registrations to inactive or premium membership levels without payments

How to Mitigate CVE-2026-1321

Immediate Actions Required

  • Update the Membership Plugin – Restrict Content plugin to version 3.2.21 or later immediately
  • Audit all user accounts created since installing vulnerable versions for unauthorized privileges
  • Review and remove any Administrator accounts that were not intentionally created
  • Temporarily disable user registration if patching cannot be performed immediately

Patch Information

The vulnerability was partially patched in version 3.2.18 and fully addressed in subsequent releases. Two changesets address this vulnerability: Changeset #3447187 and Changeset #3460177. Site administrators should update to the latest available version to ensure complete remediation. Additional details are available in the Wordfence Vulnerability Report.

Workarounds

  • Disable public user registration on the WordPress site until the patch is applied
  • Review all membership levels and ensure none grant Administrator or Editor roles
  • Implement WAF rules to block registration requests with unexpected rcp_level parameter values
  • Remove or deactivate any membership levels configured with privileged WordPress roles
bash
# Disable WordPress user registration via wp-config.php as temporary mitigation
# Add this line to wp-config.php before the line "That's all, stop editing!"
define('DISALLOW_FILE_EDIT', true);

# Alternatively, use WP-CLI to disable registration
wp option update users_can_register 0

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.07%

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

  • WordPress Membership Code File

  • WordPress Registration Functions Reference

  • WordPress Registration Functions Reference

  • WordPress Changeset #3447187

  • WordPress Changeset #3460177

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-1492: WordPress User Registration Privilege Escalation

  • CVE-2025-12981: Listee WordPress Privilege Escalation Flaw

  • CVE-2026-0912: Toret Manager Privilege Escalation Flaw

  • CVE-2025-12845: Tablesome WordPress Privilege Escalation
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
  • English
  • 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