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-2025-5396

CVE-2025-5396: Bears Backup WordPress RCE Vulnerability

CVE-2025-5396 is a remote code execution vulnerability in the Bears Backup WordPress plugin that allows unauthenticated attackers to execute arbitrary code on the server. This article covers technical details, affected versions, and mitigation.

Published: March 25, 2026

CVE-2025-5396 Overview

CVE-2025-5396 is a critical Remote Code Execution (RCE) vulnerability in the Bears Backup plugin for WordPress affecting all versions up to and including 2.0.0. The vulnerability exists in the bbackup_ajax_handle() function, which lacks proper capability checks and fails to validate user-supplied input before passing it directly to PHP's call_user_func(). This allows unauthenticated attackers to execute arbitrary code on the server, potentially leading to complete site compromise.

Critical Impact

Unauthenticated attackers can achieve remote code execution on vulnerable WordPress installations, enabling backdoor injection, creation of rogue administrator accounts, and full server compromise without any authentication required.

Affected Products

  • Bears Backup plugin for WordPress versions up to and including 2.0.0
  • WordPress sites running the Alone theme versions 7.8.4 and older (when chained with CVE-2025-5394)
  • Any WordPress installation with the Bears Backup plugin enabled

Discovery Timeline

  • 2025-07-17 - CVE-2025-5396 published to NVD
  • 2025-07-17 - Last updated in NVD database

Technical Details for CVE-2025-5396

Vulnerability Analysis

This vulnerability represents a severe security flaw stemming from multiple compounding issues within the Bears Backup plugin's AJAX handler. The bbackup_ajax_handle() function processes AJAX requests without implementing any authentication or authorization checks, meaning any visitor to the site—authenticated or not—can invoke this functionality. More critically, the function accepts user-controlled input and passes it directly to PHP's call_user_func() without any validation or sanitization.

The call_user_func() function in PHP is designed to call a callback function with a given set of parameters. When an attacker can control the arguments passed to this function, they can effectively call any PHP function available in the execution context. This bypasses the intended application logic entirely and provides direct access to dangerous system functions.

The vulnerability is classified under CWE-94 (Improper Control of Generation of Code, or Code Injection), which accurately describes the root issue: the application fails to properly neutralize or validate input that is used to dynamically construct and execute code.

Root Cause

The root cause is twofold: first, the absence of capability checks means no authentication is required to access the vulnerable function. WordPress provides robust capability and nonce verification mechanisms specifically to prevent unauthorized access to administrative functions, but these were not implemented in bbackup_ajax_handle(). Second, the direct use of user-supplied input in call_user_func() without any form of input validation or allowlist checking allows attackers to specify arbitrary functions to execute.

Attack Vector

The attack is network-based and can be executed remotely without any authentication. An attacker sends a specially crafted AJAX request to the WordPress site targeting the Bears Backup plugin's handler endpoint. By manipulating the parameters in this request, the attacker controls which function is called via call_user_func() and with what arguments.

On WordPress sites also running the Alone theme (versions 7.8.4 and older), this vulnerability can be chained with CVE-2025-5394 to first install the Bears Backup plugin if it's not already present, and then exploit CVE-2025-5396 to achieve code execution. This attack chain significantly expands the potential attack surface to include sites that may not have the vulnerable plugin installed but are running the affected theme.

Successful exploitation enables attackers to inject persistent backdoors into the WordPress installation, create new administrator accounts for ongoing access, modify site content, exfiltrate sensitive data including database credentials, or pivot to attack other systems accessible from the web server.

Detection Methods for CVE-2025-5396

Indicators of Compromise

  • Unexpected administrator accounts appearing in WordPress user management
  • Unfamiliar PHP files in WordPress directories, particularly in wp-content/uploads/ or plugin directories
  • Unusual outbound network connections from the web server
  • Modified .htaccess files or unexpected rewrites
  • Web server logs showing unusual POST requests to WordPress AJAX endpoints with abnormal parameters

Detection Strategies

  • Monitor WordPress AJAX endpoint (/wp-admin/admin-ajax.php) for requests containing Bears Backup actions with suspicious function names or parameters
  • Implement file integrity monitoring on WordPress core files and plugin directories to detect unauthorized modifications
  • Review user account creation logs for administrator accounts created outside normal administrative processes
  • Deploy Web Application Firewall (WAF) rules to detect and block code injection patterns in AJAX requests

Monitoring Recommendations

  • Enable comprehensive logging for all WordPress AJAX requests and audit for anomalous patterns
  • Configure alerts for new administrator account creation events
  • Implement real-time file system monitoring with hash verification for critical WordPress files
  • Monitor server process execution for unexpected PHP child processes or system command invocations

How to Mitigate CVE-2025-5396

Immediate Actions Required

  • Immediately disable or remove the Bears Backup plugin if running version 2.0.0 or earlier
  • Audit WordPress user accounts for any unauthorized administrator accounts and remove them
  • Scan the WordPress installation for backdoors or unauthorized file modifications
  • If running the Alone theme version 7.8.4 or older, update or disable the theme to prevent the CVE-2025-5394 attack chain
  • Review server and application logs for evidence of exploitation

Patch Information

At the time of publication, organizations should consult the Wordfence Vulnerability Report for the latest remediation guidance and patch availability. If a patched version becomes available, upgrade immediately after verifying the patch addresses the vulnerability.

Workarounds

  • Remove or deactivate the Bears Backup plugin entirely until a secure version is released
  • Implement Web Application Firewall rules to block malicious AJAX requests targeting the plugin's endpoints
  • Restrict access to WordPress admin-ajax.php using server-level access controls if plugin removal is not immediately possible
  • Apply network segmentation to limit the impact of potential server compromise
  • Consider using alternative backup solutions that have undergone security audits
bash
# Disable Bears Backup plugin via WP-CLI
wp plugin deactivate bears-backup --path=/var/www/wordpress

# Verify no unauthorized admin users exist
wp user list --role=administrator --path=/var/www/wordpress

# Check for recently modified files in plugin directories
find /var/www/wordpress/wp-content/plugins -type f -mtime -7 -name "*.php"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechWordpress

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.73%

  • 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-94
  • Technical References
  • ThemeForest WordPress Theme Listing

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-1555: WebStack WordPress Theme RCE Vulnerability

  • CVE-2026-3017: Smart Post Show WordPress Plugin RCE Flaw

  • CVE-2026-1830: WordPress Quick Playground RCE Vulnerability

  • CVE-2026-3535: WordPress DSGVO Google Fonts RCE Flaw
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