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

CVE-2025-15041: BackWPup WordPress Privilege Escalation

CVE-2025-15041 is a privilege escalation flaw in BackWPup WordPress plugin allowing authenticated attackers to gain admin access by modifying site options. This article covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2025-15041 Overview

The BackWPup – WordPress Backup & Restore Plugin for WordPress contains a critical authorization vulnerability that enables authenticated attackers to escalate privileges through unauthorized modification of WordPress site options. The vulnerability exists due to a missing capability check on the save_site_option() function in all versions up to and including 5.6.2.

Critical Impact

Authenticated attackers can modify arbitrary WordPress options, including the default user registration role, enabling them to create administrator accounts and gain full administrative access to vulnerable WordPress installations.

Affected Products

  • BackWPup – WordPress Backup & Restore Plugin versions up to and including 5.6.2
  • WordPress sites running vulnerable BackWPup plugin versions

Discovery Timeline

  • 2026-02-19 - CVE-2025-15041 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2025-15041

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization), a broken access control flaw that occurs when a software component does not perform proper authorization checks before allowing access to a protected resource or functionality. In the context of the BackWPup plugin, the save_site_option() function lacks appropriate capability verification, allowing authenticated users with minimal privileges to invoke functionality that should be restricted to administrators.

The attack exploits the plugin's REST API endpoint handling, where the authorization logic fails to validate whether the requesting user has sufficient permissions to modify WordPress site options. This architectural flaw enables a privilege escalation attack chain where attackers can manipulate critical WordPress configuration settings.

Root Cause

The root cause lies in the missing capability check within the save_site_option() function located in the plugin's REST API handler. WordPress plugins are expected to verify user capabilities using functions like current_user_can() before performing privileged operations. The vulnerable code path in BackWPup's Rest.php file allows the function to execute without verifying that the authenticated user has the manage_options capability, which is typically required for modifying WordPress site options.

Attack Vector

The attack is network-based and requires the attacker to have authenticated access to the WordPress site, even with minimal privileges. The exploitation flow involves:

  1. An attacker authenticates to the WordPress site with any valid user account
  2. The attacker crafts a malicious request to the BackWPup REST API endpoint
  3. The vulnerable save_site_option() function processes the request without capability verification
  4. The attacker modifies the default_role option to administrator
  5. The attacker enables user registration via the users_can_register option
  6. The attacker registers a new account, which automatically receives administrator privileges

The vulnerability can be exploited through direct REST API calls targeting the BackWPup plugin endpoints. Technical details of the vulnerable code can be found in the WordPress BackWPup API Code on the WordPress Plugin Trac.

Detection Methods for CVE-2025-15041

Indicators of Compromise

  • Unexpected modifications to the default_role WordPress option, particularly changes to administrator
  • Sudden enabling of user registration (users_can_register option set to 1) without administrative action
  • New user accounts with administrator privileges that were not created by legitimate administrators
  • Unusual REST API activity targeting BackWPup plugin endpoints from non-administrative users
  • WordPress options table entries showing recent modifications to registration-related settings

Detection Strategies

  • Monitor WordPress REST API logs for requests to BackWPup endpoints from users without administrative capabilities
  • Implement file integrity monitoring on the wp_options table to detect unauthorized option modifications
  • Review user account creation logs for suspicious administrator account registrations
  • Deploy Web Application Firewall (WAF) rules to detect and block exploitation attempts against the vulnerable endpoint
  • Audit authentication logs for privilege escalation patterns following low-privilege user logins

Monitoring Recommendations

  • Enable detailed logging for WordPress REST API requests, particularly those targeting plugin-specific endpoints
  • Configure alerts for changes to critical WordPress options such as default_role and users_can_register
  • Implement real-time monitoring of new user registrations with elevated privileges
  • Establish baseline behavior for BackWPup plugin API usage to identify anomalous access patterns

How to Mitigate CVE-2025-15041

Immediate Actions Required

  • Update BackWPup plugin to a patched version immediately (versions above 5.6.2)
  • Audit existing WordPress user accounts for any unauthorized administrator accounts created through exploitation
  • Review WordPress options table for unauthorized modifications to default_role and users_can_register settings
  • Temporarily disable the BackWPup plugin if immediate patching is not possible
  • Implement Web Application Firewall rules to block exploitation attempts while patching is scheduled

Patch Information

The vulnerability has been addressed in versions after 5.6.2. The fix implements proper capability checks on the save_site_option() function to ensure only users with appropriate permissions can modify WordPress site options. Details of the patch implementation can be reviewed in the WordPress BackWPup Changeset. Additional vulnerability analysis is available from Wordfence Vulnerability Analysis.

Workarounds

  • Restrict access to the WordPress REST API using server-level configurations or security plugins until patching is complete
  • Disable user registration on the WordPress site temporarily to prevent exploitation of the privilege escalation chain
  • Implement IP-based access controls to limit REST API access to trusted networks
  • Remove or deactivate the BackWPup plugin if it is not actively required for site operations
bash
# Disable WordPress REST API for unauthenticated users via .htaccess (temporary workaround)
# Add to WordPress root .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-json/backwpup/ [NC]
RewriteCond %{HTTP:Authorization} ^$
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
  • TypePrivilege Escalation

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-862
  • Technical References
  • WordPress BackWPup API Code

  • WordPress BackWPup Changeset

  • Wordfence Vulnerability Analysis
  • 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