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

CVE-2025-13416: ProfileGrid Plugin Auth Bypass Flaw

CVE-2025-13416 is an authentication bypass vulnerability in the ProfileGrid WordPress plugin allowing low-privileged users to suspend arbitrary users. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2025-13416 Overview

The ProfileGrid – User Profiles, Groups and Communities plugin for WordPress contains a missing authorization vulnerability in the pm_deactivate_user_from_group() function. This security flaw affects all versions up to and including 5.9.7.2, allowing authenticated attackers with minimal privileges (Subscriber-level access and above) to suspend arbitrary users from groups without proper capability verification.

Critical Impact

Authenticated attackers with low-privilege accounts can suspend any user from groups, including administrators, potentially disrupting site operations and user management through the pm_deactivate_user_from_group AJAX action.

Affected Products

  • ProfileGrid – User Profiles, Groups and Communities plugin for WordPress versions ≤ 5.9.7.2
  • WordPress installations utilizing the ProfileGrid plugin with group functionality enabled
  • Sites allowing user registration with subscriber-level access

Discovery Timeline

  • February 5, 2026 - CVE-2025-13416 published to NVD
  • February 5, 2026 - Last updated in NVD database

Technical Details for CVE-2025-13416

Vulnerability Analysis

This vulnerability represents a classic Missing Authorization flaw (CWE-862) in the WordPress plugin ecosystem. The pm_deactivate_user_from_group() function processes user suspension requests via an AJAX endpoint without implementing proper capability checks. When a request is made to the pm_deactivate_user_from_group action, the function fails to verify whether the requesting user has the appropriate permissions to perform administrative actions on other users.

The attack requires only basic authenticated access to the WordPress site—any user with Subscriber-level permissions or higher can exploit this vulnerability. Since WordPress allows user registration by default on many installations, this significantly lowers the barrier to exploitation.

Root Cause

The root cause is the absence of a capability check within the pm_deactivate_user_from_group() function located in the class-profile-magic-public.php file around line 3167. WordPress plugins should implement functions like current_user_can() to verify that the authenticated user has appropriate permissions before executing privileged operations. Without this authorization gate, any authenticated user can invoke the AJAX action and manipulate group memberships for arbitrary users.

Attack Vector

The attack is network-based and requires the attacker to have an authenticated session with at least Subscriber-level access. The exploitation flow involves:

  1. Attacker registers or compromises a low-privilege account on the target WordPress site
  2. Attacker crafts a malicious AJAX request to the pm_deactivate_user_from_group action
  3. The request includes target user ID and group parameters
  4. The vulnerable function processes the request without authorization verification
  5. The target user (potentially an administrator) is suspended from the specified group

The vulnerability can be exploited through standard HTTP POST requests to the WordPress AJAX endpoint (/wp-admin/admin-ajax.php) with the action parameter set to pm_deactivate_user_from_group. Technical details regarding the vulnerable code path can be found in the WordPress Plugin File Reference.

Detection Methods for CVE-2025-13416

Indicators of Compromise

  • Unexpected user suspension events in WordPress group management logs
  • Anomalous AJAX requests to admin-ajax.php with action=pm_deactivate_user_from_group from low-privilege user sessions
  • Reports from administrators or users about being unexpectedly removed from groups
  • Increased activity from subscriber-level accounts targeting the ProfileGrid AJAX endpoints

Detection Strategies

  • Monitor WordPress AJAX request logs for pm_deactivate_user_from_group actions originating from non-administrative users
  • Implement Web Application Firewall (WAF) rules to flag suspicious patterns in requests to the ProfileGrid AJAX endpoints
  • Review user activity logs for subscriber accounts making administrative-level operations
  • Deploy endpoint detection to identify unusual POST request patterns to WordPress admin-ajax.php

Monitoring Recommendations

  • Enable detailed logging for all AJAX actions within WordPress and review for unauthorized operation attempts
  • Configure alerts for group membership changes that occur outside of administrative dashboard sessions
  • Regularly audit user roles and permissions to identify compromised or suspicious accounts
  • Implement rate limiting on AJAX endpoints to slow potential automated exploitation attempts

How to Mitigate CVE-2025-13416

Immediate Actions Required

  • Update the ProfileGrid – User Profiles, Groups and Communities plugin to a version newer than 5.9.7.2 immediately
  • Audit recent group membership changes to identify potential unauthorized suspensions
  • Review and restore any users who may have been improperly suspended from groups
  • Consider temporarily disabling user registration if the plugin cannot be immediately updated

Patch Information

The vulnerability has been addressed in versions after 5.9.7.2. The patch implements proper capability checks within the pm_deactivate_user_from_group() function to ensure only authorized users can perform group suspension actions. Details of the security fix can be reviewed in the WordPress Changeset Details. Additional vulnerability analysis is available from Wordfence Vulnerability Analysis.

Workarounds

  • Restrict user registration on the WordPress site until the plugin is updated
  • Implement a WAF rule to block requests to admin-ajax.php containing the pm_deactivate_user_from_group action from non-administrative users
  • Temporarily deactivate the ProfileGrid plugin if group functionality is not critical to site operations
  • Use a security plugin to enforce additional capability checks on AJAX requests
bash
# Example .htaccess rule to temporarily block the vulnerable AJAX action
# Add to WordPress root .htaccess (temporary workaround only)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-admin/admin-ajax\.php$ [NC]
RewriteCond %{QUERY_STRING} action=pm_deactivate_user_from_group [NC,OR]
RewriteCond %{REQUEST_BODY} action=pm_deactivate_user_from_group [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 Score4.3

  • EPSS Probability0.03%

  • 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-862
  • Technical References
  • WordPress Plugin File Reference

  • WordPress Plugin File Reference

  • WordPress Changeset Details

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-4281: WordPress FormLift Auth Bypass Vulnerability

  • CVE-2026-2931: Amelia Booking Auth Bypass Vulnerability

  • CVE-2026-4066: Smart Custom Fields Auth Bypass Flaw

  • CVE-2026-4056: WordPress User Registration Auth Bypass
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