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-2025-13538

CVE-2025-13538: WordPress FindAll Listing Vulnerability

CVE-2025-13538 is a privilege escalation vulnerability in the FindAll Listing plugin for WordPress, allowing unauthenticated attackers to gain administrator access during registration. Learn about affected versions and solutions.

Published: March 18, 2026

CVE-2025-13538 Overview

CVE-2025-13538 is a critical Privilege Escalation vulnerability affecting the FindAll Listing plugin for WordPress in all versions up to and including 1.0.5. The vulnerability exists due to improper role restriction in the findall_listing_user_registration_additional_params function, which fails to validate user roles during registration. This allows unauthenticated attackers to register with administrator privileges, gaining full administrative access to the WordPress site.

Critical Impact

Unauthenticated attackers can gain full administrator access to WordPress sites by supplying the 'administrator' role during user registration, potentially leading to complete site takeover.

Affected Products

  • FindAll Listing plugin for WordPress versions up to and including 1.0.5
  • WordPress sites with both FindAll Listing and FindAll Membership plugins activated
  • FindAll Business Directory Theme ecosystem

Discovery Timeline

  • 2025-11-27 - CVE-2025-13538 published to NVD
  • 2025-12-01 - Last updated in NVD database

Technical Details for CVE-2025-13538

Vulnerability Analysis

This vulnerability is classified under CWE-269 (Improper Privilege Management). The core issue lies in the findall_listing_user_registration_additional_params function within the FindAll Listing plugin, which processes user registration requests without properly validating or restricting the user role parameter.

When a user registers through the WordPress site, the vulnerable function accepts arbitrary role values provided in the registration request. Since there is no server-side validation to ensure that only permitted roles (such as 'subscriber' or 'customer') can be assigned during registration, an attacker can craft a malicious registration request that specifies the 'administrator' role.

It's important to note that this vulnerability requires the FindAll Membership plugin to also be installed and activated, as the user registration functionality resides in that companion plugin. When both plugins are active, the attack surface is exposed.

Root Cause

The root cause is a failure to implement proper access control during the user registration process. The findall_listing_user_registration_additional_params function accepts user-supplied role parameters without validation, trusting client-side input to define user privileges. This violates the principle of least privilege and fails to implement proper server-side authorization checks.

The function should have included a whitelist of acceptable user roles and validated any incoming role parameter against this list before processing the registration. Instead, it blindly accepts whatever role is provided, including privileged roles like 'administrator'.

Attack Vector

The attack is executed over the network and requires no authentication or user interaction. An attacker can exploit this vulnerability by intercepting or crafting a user registration request and modifying the role parameter to 'administrator'. The attack sequence typically involves:

  1. Identifying a WordPress site running both FindAll Listing and FindAll Membership plugins
  2. Navigating to the user registration page
  3. Intercepting the registration request using a proxy tool or crafting a direct POST request
  4. Modifying the role parameter to specify 'administrator'
  5. Submitting the modified request to create an administrator account
  6. Logging in with the newly created administrator credentials

Once administrative access is obtained, the attacker has complete control over the WordPress site, including the ability to modify content, install malicious plugins, access sensitive user data, and potentially compromise the underlying server.

Detection Methods for CVE-2025-13538

Indicators of Compromise

  • Unexpected administrator accounts created with recent registration dates
  • User registration logs showing unusual role assignments to 'administrator'
  • New administrator accounts with suspicious email domains or usernames
  • Database entries in wp_users and wp_usermeta tables showing unauthorized admin accounts

Detection Strategies

  • Review WordPress user database for recently created administrator accounts that were not authorized
  • Monitor registration endpoints for requests containing 'administrator' or other privileged role values
  • Implement logging for all user registration activities and role assignments
  • Deploy web application firewall (WAF) rules to detect manipulation of role parameters in registration requests

Monitoring Recommendations

  • Enable detailed logging on WordPress registration endpoints
  • Configure alerts for new administrator account creation events
  • Monitor for mass registration attempts that may indicate automated exploitation
  • Review access logs for patterns consistent with privilege escalation attempts

How to Mitigate CVE-2025-13538

Immediate Actions Required

  • Deactivate the FindAll Listing plugin immediately if running version 1.0.5 or earlier
  • Audit existing WordPress administrator accounts and remove any unauthorized entries
  • Review user registration logs for signs of exploitation
  • Consider temporarily disabling user registration until a patch is applied

Patch Information

As of the last update on 2025-12-01, organizations should check the ThemeForest Business Directory Theme page and the Wordfence Vulnerability Report for the latest patch information and updated plugin versions. Update to the latest patched version as soon as it becomes available.

Workarounds

  • Disable the FindAll Listing plugin until an official patch is released
  • Implement a custom code snippet or security plugin to restrict role assignment during registration
  • Use a WordPress security plugin to add server-side validation for registration role parameters
  • If registration functionality is not required, disable WordPress user registration entirely via Settings > General
bash
# Disable WordPress user registration via wp-config.php (temporary workaround)
# Add the following line to your wp-config.php file
define('DISALLOW_FILE_MODS', true);

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

# To audit existing administrator accounts via WP-CLI
wp user list --role=administrator --format=table

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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-269
  • Technical References
  • ThemeForest Business Directory Theme

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-3568: MStore API Privilege Escalation Vulnerability

  • CVE-2026-4003: WordPress Users Manager PN Privilege Escalation

  • CVE-2026-5130: WordPress Debugger Plugin Escalation Flaw

  • CVE-2026-4261: Expire Users Plugin Privilege Escalation
Default Legacy - Prefooter | 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