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

CVE-2026-6419: WishList Member Privilege Escalation Flaw

CVE-2026-6419 is a privilege escalation vulnerability in the WishList Member WordPress plugin that allows subscribers to obtain API keys and create admin accounts. This article covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-6419 Overview

The WishList Member plugin for WordPress contains a privilege escalation flaw in versions up to and including 3.30.1. The ajax_get_screen() function lacks both capability and nonce checks. Authenticated attackers with Subscriber-level access can supply an arbitrary admin screen identifier through the data[url] parameter. The plugin then renders the administrative API configuration template without authorization. The response leaks the plaintext REST API Secret Key directly to the attacker. An attacker who obtains this key can authenticate to the WishList Member API, create a membership level mapped to the administrator WordPress role, and register an arbitrary administrator account. This results in complete site takeover and maps to Missing Authorization [CWE-269].

Critical Impact

Authenticated Subscriber-level users can escalate privileges to administrator and achieve full WordPress site takeover.

Affected Products

  • WishList Member WordPress plugin versions up to and including 3.30.1
  • WordPress sites with Subscriber-or-higher account registration enabled
  • All WordPress installations running the vulnerable plugin in default configuration

Discovery Timeline

  • 2026-05-23 - CVE-2026-6419 published to NVD
  • 2026-05-26 - Last updated in NVD database

Technical Details for CVE-2026-6419

Vulnerability Analysis

The vulnerability resides in the ajax_get_screen() AJAX handler exposed by the WishList Member plugin. The handler accepts a screen identifier via the data[url] parameter and loads the corresponding admin screen template. The handler omits both a capability check and a WordPress nonce verification. Any authenticated user, including a Subscriber, can therefore invoke administrative screen rendering through the admin-ajax.php endpoint.

When the attacker supplies the identifier for the administrative API configuration screen, the plugin renders the template server-side and returns the resulting HTML in the AJAX JSON response. That template embeds the plaintext REST API Secret Key used to authenticate to the WishList Member REST API.

With the Secret Key, the attacker calls the plugin's REST API to create a new membership level bound to the WordPress administrator role. The attacker then registers a new user assigned to that level. The newly created account holds full administrator privileges, enabling plugin installation, theme editing, and arbitrary PHP execution on the host.

Root Cause

The root cause is Missing Authorization [CWE-269] in ajax_get_screen(). The function does not call current_user_can() to verify administrative capability and does not validate a nonce using check_ajax_referer(). Sensitive configuration data is also returned directly in the AJAX response rather than restricted to authorized rendering contexts.

Attack Vector

The attack requires only network access and a low-privileged authenticated session. The attacker sends a POST request to wp-admin/admin-ajax.php with the plugin's AJAX action and the targeted admin screen identifier in data[url]. The server returns the rendered administrative template containing the REST API Secret Key. The attacker then issues authenticated REST API calls to create the administrator-level membership and user account.

No verified public exploit code is available. Refer to the Wordfence Vulnerability Report for additional technical detail.

Detection Methods for CVE-2026-6419

Indicators of Compromise

  • POST requests to wp-admin/admin-ajax.php referencing the WishList Member ajax_get_screen action originating from Subscriber-level accounts.
  • AJAX responses containing wlm_secret_key or REST API key strings returned to non-administrative sessions.
  • Creation of new membership levels bound to the WordPress administrator role via the WishList Member REST API.
  • Unexpected administrator user accounts created shortly after AJAX activity from low-privileged users.

Detection Strategies

  • Inspect web server access logs for admin-ajax.php calls invoking WishList Member screen-loading actions from sessions without manage_options capability.
  • Correlate AJAX request bursts containing the data[url] parameter with subsequent REST API calls to WishList Member endpoints.
  • Monitor the WordPress users and usermeta tables for new accounts with the administrator role created outside change windows.

Monitoring Recommendations

  • Alert on any creation of WordPress users with the administrator role from REST API contexts.
  • Track plugin REST API authentication events and flag use of the WishList Member Secret Key from unfamiliar IP addresses.
  • Enable WordPress audit logging to capture role changes, membership-level creation, and option modifications.

How to Mitigate CVE-2026-6419

Immediate Actions Required

  • Update the WishList Member plugin to a version above 3.30.1 as soon as a patched release is available from the vendor.
  • Audit all WordPress administrator accounts and remove any unrecognized users.
  • Rotate the WishList Member REST API Secret Key after patching to invalidate any key copied by attackers.
  • Restrict new user registration to trusted workflows until the plugin is patched.

Patch Information

Review the vendor advisory at the WishList Member Official Site for the fixed release. The Wordfence Vulnerability Report tracks the affected version range and remediation status.

Workarounds

  • Disable the WishList Member plugin until a patched version is installed if business operations allow.
  • Block external access to wp-admin/admin-ajax.php requests carrying the vulnerable action using a web application firewall rule.
  • Temporarily disable open user registration to prevent attackers from obtaining Subscriber-level accounts.
  • Restrict REST API access to the WishList Member endpoints by IP allowlist at the WAF or reverse proxy layer.
bash
# Example WAF rule concept: block low-privileged calls to the vulnerable AJAX action
# (Adapt to your WAF syntax; verify action name in plugin source before deployment)
SecRule REQUEST_URI "@endsWith /wp-admin/admin-ajax.php" \
  "chain,deny,status:403,id:1026419,msg:'Block WishList Member ajax_get_screen abuse (CVE-2026-6419)'"
SecRule ARGS:action "@streq wlm_ajax_get_screen" \
  "chain"
SecRule ARGS:data[url] "@rx .+" "t:none"

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.8

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-269
  • Technical References
  • Wishlist Member Official Site

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-6226: WordPress Plugin Privilege Escalation Flaw

  • CVE-2026-7651: WordPress User Registration IDOR Vulnerability

  • CVE-2026-8787: Firebase Support Plugin Privilege Escalation

  • CVE-2026-6895: WishList Member Privilege Escalation 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