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-2026-3629

CVE-2026-3629: WordPress Plugin Privilege Escalation Flaw

CVE-2026-3629 is a privilege escalation vulnerability in the Import and Export Users and Customers plugin for WordPress. Attackers can gain Administrator access through crafted registration requests, exploiting improper meta key restrictions.

Published: March 27, 2026

CVE-2026-3629 Overview

The Import and export users and customers plugin for WordPress is vulnerable to privilege escalation in all versions up to, and including, 1.29.7. This vulnerability exists due to the save_extra_user_profile_fields function not properly restricting which user meta keys can be updated via profile fields. The get_restricted_fields method does not include sensitive meta keys such as wp_capabilities, making it possible for unauthenticated attackers to escalate their privileges to Administrator by submitting a crafted registration request that sets the wp_capabilities meta key.

Critical Impact

Unauthenticated attackers can achieve full Administrator access to WordPress installations by exploiting improper access controls in user meta field handling, potentially leading to complete site compromise.

Affected Products

  • Import and export users and customers plugin for WordPress versions up to and including 1.29.7
  • WordPress installations with the vulnerable plugin where "Show fields in profile" setting is enabled
  • Sites where a CSV with a wp_capabilities column header has been previously imported

Discovery Timeline

  • 2026-03-21 - CVE CVE-2026-3629 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-3629

Vulnerability Analysis

This privilege escalation vulnerability (CWE-269: Improper Privilege Management) stems from inadequate restrictions on user meta key updates within the WordPress plugin's profile field handling mechanism. The vulnerability requires specific conditions to be exploitable: the "Show fields in profile" setting must be enabled, and a CSV file containing a wp_capabilities column header must have been previously imported into the system.

When these conditions are met, the plugin's save_extra_user_profile_fields function fails to properly validate and restrict which user meta keys can be modified through profile field submissions. The get_restricted_fields method, which should serve as a safeguard against sensitive field modifications, does not include critical WordPress meta keys like wp_capabilities in its restricted list. This oversight allows attackers to inject arbitrary capability assignments through crafted registration requests.

Root Cause

The root cause lies in the incomplete implementation of the get_restricted_fields method within the plugin's columns.php and helper.php classes. The method was designed to prevent modification of sensitive user meta fields but failed to account for the wp_capabilities meta key, which WordPress uses to store user role and permission assignments. This oversight creates a gap in the access control mechanism that attackers can exploit to assign themselves Administrator-level capabilities.

Attack Vector

The attack is network-based and can be executed by unauthenticated users. An attacker would craft a malicious registration request that includes the wp_capabilities field set to Administrator privileges. When the plugin processes this request through the save_extra_user_profile_fields function, it bypasses the incomplete field restrictions and directly updates the user's capabilities in the WordPress database.

The vulnerability mechanism operates through the profile field handling functions. The save_extra_user_profile_fields function at columns.php L193 processes user-submitted profile data without adequate filtering. The restriction logic at columns.php L217 and helper.php L146 fails to include wp_capabilities in the blocked field list, allowing privilege escalation through crafted requests.

Detection Methods for CVE-2026-3629

Indicators of Compromise

  • Unexpected user accounts with Administrator privileges appearing in the WordPress user database
  • User registration logs showing accounts being created with elevated capabilities
  • Database entries showing wp_capabilities modifications outside of normal administrative workflows
  • Unusual profile field update activity in WordPress audit logs

Detection Strategies

  • Monitor WordPress user creation events for accounts immediately assigned Administrator roles
  • Implement database auditing to track changes to the wp_usermeta table, particularly the wp_capabilities meta key
  • Review web server logs for POST requests to registration endpoints containing suspicious capability-related parameters
  • Deploy Web Application Firewall (WAF) rules to detect and block requests attempting to set wp_capabilities through registration forms

Monitoring Recommendations

  • Enable WordPress security logging to capture user registration and role assignment events
  • Configure alerts for any new Administrator account creation outside of expected administrative actions
  • Periodically audit user accounts and their assigned capabilities to identify unauthorized privilege escalations
  • Monitor the Import and export users and customers plugin configuration for unexpected changes to the "Show fields in profile" setting

How to Mitigate CVE-2026-3629

Immediate Actions Required

  • Update the Import and export users and customers plugin to a version newer than 1.29.7 immediately
  • Disable the "Show fields in profile" setting if the feature is not actively required
  • Audit all existing WordPress user accounts for unauthorized Administrator privileges
  • Review and remove any previously imported CSV files containing wp_capabilities column headers

Patch Information

A patch addressing this vulnerability is available through the WordPress Plugin Changeset. Site administrators should update to the latest patched version through the WordPress admin panel or by manually downloading the updated plugin from the WordPress plugin repository. For detailed vulnerability information, refer to the Wordfence Vulnerability Report.

Workarounds

  • Disable the "Show fields in profile" setting in the plugin configuration to prevent exploitation
  • Remove any imported CSV files that contain a wp_capabilities column header from the system
  • Implement additional access controls or WAF rules to block registration requests containing capability modification attempts
  • Consider temporarily deactivating the plugin until the update can be applied if immediate patching is not possible
bash
# WordPress CLI commands to audit and manage user capabilities
# List all users with Administrator role
wp user list --role=administrator --format=table

# Check specific user capabilities
wp user get <username> --field=roles

# Remove unauthorized admin privileges (replace USER_ID)
wp user set-role USER_ID subscriber

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

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-269
  • Technical References
  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Code Snippet

  • WordPress Plugin Changeset

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-5130: WordPress Debugger Plugin Escalation Flaw

  • CVE-2026-4261: Expire Users Plugin Privilege Escalation

  • CVE-2026-2941: Linksy WordPress Privilege Escalation Flaw

  • CVE-2026-2375: App Builder WordPress Privilege Escalation
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