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
    • 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-4977

CVE-2026-4977: UsersWP WordPress Auth Bypass Vulnerability

CVE-2026-4977 is an authentication bypass vulnerability in the UsersWP plugin for WordPress that allows subscribers to modify restricted admin-only user fields. This article covers technical details, affected versions, and mitigation.

Published: April 17, 2026

CVE-2026-4977 Overview

CVE-2026-4977 is an Improper Access Control vulnerability affecting the UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WordPress in all versions up to and including 1.2.58. The vulnerability exists due to insufficient field-level permission validation in the upload_file_remove() AJAX handler, where the $htmlvar parameter is not validated against a whitelist of allowed fields or checked against the field's for_admin_use property.

This flaw allows authenticated attackers with subscriber-level access and above to clear or reset any restricted usermeta column for their own user record, including fields marked as "For admin use only," effectively bypassing intended field-level access restrictions.

Critical Impact

Authenticated attackers with minimal privileges (subscriber-level) can manipulate restricted user metadata fields, potentially bypassing security controls and modifying admin-only profile data.

Affected Products

  • UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WordPress versions up to and including 1.2.58
  • WordPress installations using vulnerable UsersWP plugin versions
  • Websites relying on UsersWP for user registration and profile management

Discovery Timeline

  • 2026-04-10 - CVE-2026-4977 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2026-4977

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization). The core issue lies within the upload_file_remove() AJAX handler in the UsersWP plugin's form processing functionality. When processing file removal requests, the handler fails to properly validate whether the requesting user has permission to modify the specified field.

The vulnerable code path can be traced through the class-forms.php file (around lines 2251 and 2274) and the class-meta.php file (around line 165). These locations handle user metadata operations without adequate authorization checks.

The attack requires network access and authentication at the subscriber level, but no user interaction is needed. While the vulnerability allows modification of data integrity, it does not directly impact confidentiality or system availability.

Root Cause

The root cause of CVE-2026-4977 is the absence of proper field-level permission validation in the AJAX handler responsible for file removal operations. Specifically:

  1. The $htmlvar parameter passed to the upload_file_remove() function is not validated against a whitelist of fields the authenticated user is permitted to modify
  2. The handler does not verify whether the target field has the for_admin_use property set, which should restrict modifications to administrators only
  3. This creates a gap where subscribers can manipulate fields that were intended to be editable only by site administrators

Attack Vector

An authenticated attacker with subscriber-level privileges can exploit this vulnerability through the following mechanism:

  1. The attacker authenticates to WordPress with a standard subscriber account
  2. They craft a malicious AJAX request to the upload_file_remove endpoint
  3. By manipulating the $htmlvar parameter, they can target restricted usermeta fields
  4. The server processes the request without validating field-level permissions
  5. The attacker successfully clears or resets admin-only user metadata for their own account

The vulnerability is exploited via network-based requests to the WordPress AJAX handler. While the attacker can only modify their own user record, this could include clearing sensitive verification flags, approval statuses, or other administrative metadata that controls user capabilities.

For technical details on the vulnerable code paths, refer to the WordPress UsersWP Code Review and the Wordfence Vulnerability Report.

Detection Methods for CVE-2026-4977

Indicators of Compromise

  • Unusual AJAX requests to the upload_file_remove action from subscriber-level accounts
  • Unexpected modifications to usermeta fields marked as admin-only
  • User records showing cleared or reset values in restricted metadata columns
  • HTTP POST requests to admin-ajax.php with suspicious $htmlvar parameter values targeting administrative fields

Detection Strategies

  • Monitor WordPress AJAX request logs for upload_file_remove actions, particularly from low-privilege users
  • Implement database auditing to track changes to usermeta entries, especially those with for_admin_use flags
  • Deploy web application firewall (WAF) rules to detect manipulation of the htmlvar parameter targeting restricted fields
  • Review access logs for patterns of repeated AJAX requests from subscriber accounts attempting to modify multiple fields

Monitoring Recommendations

  • Enable detailed logging for WordPress AJAX handlers to capture full request parameters
  • Implement real-time alerts for usermeta modifications made through the UsersWP plugin
  • Configure SentinelOne to monitor for suspicious WordPress plugin activity and unauthorized data modifications
  • Regularly audit user metadata integrity to identify unauthorized changes to admin-only fields

How to Mitigate CVE-2026-4977

Immediate Actions Required

  • Update the UsersWP plugin to version 1.2.59 or later immediately
  • Review usermeta records for any unauthorized modifications to admin-only fields
  • Audit subscriber accounts for suspicious activity patterns
  • Consider temporarily disabling the UsersWP plugin if immediate patching is not possible

Patch Information

The vulnerability has been addressed in UsersWP version 1.2.59. The fix implements proper field-level permission validation in the upload_file_remove() AJAX handler, ensuring that the $htmlvar parameter is checked against allowed fields and the for_admin_use property is respected.

The security patch can be reviewed in the WordPress UsersWP Change Log comparing versions 1.2.58 and 1.2.59.

To update the plugin:

  1. Navigate to the WordPress admin panel
  2. Go to Plugins → Installed Plugins
  3. Locate UsersWP and click "Update Now"
  4. Verify the version number is 1.2.59 or higher after update

Workarounds

  • Implement additional access control through a security plugin that can filter AJAX requests
  • Use a Web Application Firewall (WAF) to block suspicious requests to the upload_file_remove endpoint
  • Temporarily disable file upload functionality in UsersWP until the patch is applied
  • Restrict subscriber registration if not business-critical until the update is deployed
bash
# Verify current UsersWP plugin version in WordPress
wp plugin list --name=userswp --format=table

# Update UsersWP plugin via WP-CLI
wp plugin update userswp

# Verify the update was successful
wp plugin get userswp --field=version

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechUserswp

  • 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 UsersWP Code Review

  • WordPress UsersWP Code Review

  • WordPress UsersWP Code Review

  • WordPress UsersWP Code Review

  • WordPress UsersWP Code Review

  • WordPress UsersWP Code Review

  • WordPress UsersWP Change Log

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-25015: UsersWP Plugin CSRF Vulnerability
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