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

CVE-2026-2356: WordPress User Registration IDOR Vulnerability

CVE-2026-2356 is an Insecure Direct Object Reference vulnerability in the WordPress User Registration & Membership plugin that lets unauthenticated attackers delete newly registered user accounts. This post covers technical details, affected versions, impact, and mitigation strategies.

Published: February 27, 2026

CVE-2026-2356 Overview

The User Registration & Membership – Custom Registration Form, Login Form, and User Profile plugin for WordPress is vulnerable to Insecure Direct Object Reference (IDOR) in all versions up to, and including, 5.1.2 via the register_member function. The vulnerability exists due to missing validation on the member_id user-controlled key, which allows unauthenticated attackers to delete arbitrary user accounts that have newly registered on the site and have the urm_user_just_created user meta set.

Critical Impact

Unauthenticated attackers can delete newly registered user accounts by manipulating the member_id parameter, potentially disrupting user registration workflows and denying service to legitimate users.

Affected Products

  • User Registration & Membership – Custom Registration Form, Login Form, and User Profile plugin for WordPress versions up to and including 5.1.2
  • WordPress sites utilizing the membership registration functionality
  • Sites with active user registration processes

Discovery Timeline

  • 2026-02-26 - CVE CVE-2026-2356 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-2356

Vulnerability Analysis

This Insecure Direct Object Reference vulnerability occurs within the membership module's AJAX handling functionality. The register_member function fails to properly validate ownership or authorization when processing the member_id parameter. This allows attackers to reference and manipulate user accounts they should not have access to.

The vulnerability specifically targets newly registered users who have the urm_user_just_created user meta value set. This metadata is typically assigned temporarily during the registration process, creating a window of opportunity for exploitation. By submitting crafted requests with arbitrary member_id values, an unauthenticated attacker can trigger the deletion of accounts matching this criteria.

The CWE-284 (Improper Access Control) classification reflects the fundamental failure to implement proper authorization checks before performing sensitive operations on user data.

Root Cause

The root cause lies in the absence of proper authorization validation within the register_member function located in the AJAX module. The function accepts a user-controlled member_id parameter and performs operations without verifying that the requesting user has legitimate access to modify or delete the referenced account. This classic IDOR pattern allows horizontal access to other users' resources through simple parameter manipulation.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending crafted HTTP requests to the WordPress AJAX endpoint with manipulated member_id values. The attack targets the registration workflow, specifically exploiting the timing window when new users have the urm_user_just_created meta flag set.

The exploitation flow involves:

  1. Identifying the AJAX endpoint handling membership registration
  2. Enumerating or guessing valid member_id values
  3. Submitting requests with targeted member_id parameters to delete newly registered accounts

For technical implementation details, refer to the WordPress AJAX Module Code showing the vulnerable function implementation.

Detection Methods for CVE-2026-2356

Indicators of Compromise

  • Unexpected user account deletions, particularly affecting newly registered users
  • Unusual volume of AJAX requests to the user registration membership endpoints
  • Log entries showing requests with varying member_id parameters from single IP addresses
  • Reports from users unable to complete registration or finding their accounts deleted

Detection Strategies

  • Monitor WordPress AJAX requests for suspicious patterns targeting the register_member action
  • Implement rate limiting on registration-related AJAX endpoints
  • Log and alert on multiple requests with different member_id values from the same source
  • Track user account deletion events and correlate with registration timestamps

Monitoring Recommendations

  • Enable detailed WordPress access logging to capture AJAX request parameters
  • Set up alerts for anomalous user deletion activity during registration workflows
  • Monitor for enumeration patterns in member_id parameter values
  • Review web application firewall logs for IDOR attack patterns targeting user registration

How to Mitigate CVE-2026-2356

Immediate Actions Required

  • Update the User Registration & Membership plugin to a version newer than 5.1.2 once a patched version is available
  • Temporarily disable new user registration if the site is under active attack
  • Implement additional access controls at the web server or WAF level to restrict AJAX endpoint access
  • Review and restore any user accounts that may have been deleted during potential exploitation

Patch Information

A patched version addressing this vulnerability should be obtained from the official WordPress plugin repository. The fix will implement proper authorization checks on the member_id parameter within the register_member function to ensure users can only perform operations on their own accounts. Refer to the Wordfence Vulnerability Report for additional details and patch status updates.

Workarounds

  • Implement a Web Application Firewall (WAF) rule to validate and restrict member_id parameter manipulation
  • Add server-side access controls to require authentication for membership AJAX endpoints
  • Use security plugins like Wordfence to monitor and block suspicious IDOR attack patterns
  • Consider temporarily disabling the membership registration feature until the patch is applied
bash
# Example: Add .htaccess rules to restrict direct AJAX access (Apache)
# Place in WordPress root directory

<IfModule mod_rewrite.c>
RewriteEngine On
# Block direct access to membership AJAX endpoints from external sources
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} admin-ajax\.php
RewriteCond %{HTTP_REFERER} !^https?://(www\.)?yourdomain\.com [NC]
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/TechWordpress

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • WordPress AJAX Module Code

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-3139: WordPress User Profile Builder Auth Bypass

  • CVE-2026-3124: Download Monitor Auth Bypass Vulnerability

  • CVE-2026-4281: WordPress FormLift Auth Bypass Vulnerability

  • CVE-2026-2931: Amelia Booking Auth Bypass Vulnerability
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