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

CVE-2026-4003: WordPress Users-PN Plugin Privilege Escalation

CVE-2026-4003 is a privilege escalation vulnerability in the WordPress Users manager – PN plugin that allows unauthenticated attackers to update arbitrary user metadata. This article covers technical details, affected versions, and mitigation.

Updated: May 14, 2026

CVE-2026-4003 Overview

CVE-2026-4003 is a privilege escalation vulnerability in the Users manager – PN plugin for WordPress, affecting all versions up to and including 1.1.15. The flaw resides in the userspn_ajax_nopriv_server() function within the userspn_form_save case, where an authorization check only blocks unauthenticated requests when user_id is empty. Supplying any non-empty user_id bypasses the check and reaches update_user_meta() without authentication. The accompanying userspn-nonce is exposed publicly through wp_localize_script, neutralizing it as a security control. Unauthenticated attackers can update arbitrary user metadata, including the userspn_secret_token field, on any account.

Critical Impact

Unauthenticated attackers can modify arbitrary user metadata on any WordPress account using the affected plugin, enabling account takeover and privilege escalation to administrator.

Affected Products

  • Users manager – PN plugin for WordPress, all versions through 1.1.15
  • WordPress sites with the userspn plugin active and reachable via AJAX endpoints
  • Any user account on a vulnerable site, including administrator accounts

Discovery Timeline

  • 2026-04-08 - CVE-2026-4003 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-4003

Vulnerability Analysis

The vulnerability is a Missing Authorization flaw classified as [CWE-862]. The userspn_ajax_nopriv_server() handler is registered on the wp_ajax_nopriv_ hook, which serves unauthenticated visitors by design. Inside the userspn_form_save branch, the authorization logic rejects unauthenticated callers only when user_id is empty. Attackers who supply any non-empty user_id value skip the check entirely and reach the update_user_meta() call.

WordPress nonces are intended to mitigate cross-site request forgery and provide a lightweight authorization signal. In this plugin, the userspn-nonce is emitted through wp_localize_script on the public wp_enqueue_scripts hook. Any visitor loading the front-end can read a valid nonce from the page source. The nonce therefore fails to function as a security boundary and does not prevent direct exploitation.

The EPSS score is 0.242% with a percentile of 47.463 as of 2026-05-14.

Root Cause

The root cause is broken authorization logic combined with public exposure of the AJAX nonce. The conditional in userspn_ajax_nopriv_server() treats a non-empty user_id as implicit proof of legitimacy. No capability check, no ownership check, and no authenticated session verification are performed before update_user_meta() writes to the database.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker fetches the public site to harvest the localized userspn-nonce. The attacker then issues a crafted POST request to admin-ajax.php with action=userspn_form_save, a target user_id, and arbitrary meta_key and meta_value parameters. By writing values such as userspn_secret_token for an administrator account, the attacker can pivot to full account takeover through related plugin authentication flows.

No verified proof-of-concept code is published for CVE-2026-4003. Refer to the Wordfence Vulnerability Report and the WordPress Plugin Code Reference for the vulnerable code path.

Detection Methods for CVE-2026-4003

Indicators of Compromise

  • POST requests to /wp-admin/admin-ajax.php containing action=userspn_form_save from unauthenticated sessions.
  • Unexpected modifications to the wp_usermeta table, especially writes to userspn_secret_token or other plugin-managed meta keys.
  • New or escalated administrator accounts whose metadata was recently updated by an unauthenticated request.
  • Web server access logs showing the same client IP requesting front-end pages followed by repeated admin-ajax.php calls referencing varying user_id values.

Detection Strategies

  • Inspect WordPress audit logs for update_user_meta events tied to AJAX requests lacking an authenticated user context.
  • Correlate wp-admin/admin-ajax.php traffic with the userspn_form_save action and flag requests where the requester is not logged in.
  • Hunt for tampered usermeta values by diffing the wp_usermeta table against known-good baselines.

Monitoring Recommendations

  • Enable verbose logging on admin-ajax.php and forward to a central log store for retention and search.
  • Alert on any change to administrator account metadata, password hashes, or plugin-specific token fields.
  • Monitor for first-seen IPs issuing requests that include userspn-nonce values harvested from public pages.

How to Mitigate CVE-2026-4003

Immediate Actions Required

  • Deactivate and remove the Users manager – PN plugin until a patched release is confirmed installed.
  • Audit all user accounts, with priority on administrator and editor roles, for unauthorized metadata changes or unfamiliar tokens.
  • Force a password reset and session invalidation for privileged accounts on affected sites.
  • Review the wp_usermeta table for suspicious entries created or modified since the plugin was installed.

Patch Information

Review the WordPress Changeset Log and the Wordfence Vulnerability Report for the current fix status. Upgrade to the latest version released after 1.1.15 once it includes a proper capability check in userspn_ajax_nopriv_server() and removes the nonce from the public localized script.

Workarounds

  • Block requests to /wp-admin/admin-ajax.php with action=userspn_form_save at the web application firewall (WAF) layer.
  • Restrict access to admin-ajax.php from unauthenticated clients using HTTP authentication or IP allowlisting where feasible.
  • Disable the plugin entirely on production sites until a fixed version is available.
bash
# Example nginx rule to block exploitation of the vulnerable AJAX action
location = /wp-admin/admin-ajax.php {
    if ($arg_action = "userspn_form_save") {
        return 403;
    }
    if ($request_body ~* "action=userspn_form_save") {
        return 403;
    }
}

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.24%

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

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Plugin Code Reference

  • WordPress Changeset Log

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-7467: Read More & Accordion Privilege Escalation

  • CVE-2026-7284: WordPress Easy Elements Privilege Escalation

  • CVE-2026-6456: Account Switcher Privilege Escalation Flaw

  • CVE-2026-8719: AI Engine WordPress Privilege Escalation
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