Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-1104

CVE-2026-1104: FastDup WordPress Auth Bypass Vulnerability

CVE-2026-1104 is an authentication bypass vulnerability in the FastDup WordPress plugin that allows Contributors to create and download full-site backups. This article covers technical details, affected versions, and mitigations.

Published: February 13, 2026

CVE-2026-1104 Overview

The FastDup – Fastest WordPress Migration & Duplicator plugin for WordPress contains a critical authorization vulnerability due to a missing capability check on REST API endpoints. This vulnerability affects all versions up to and including 2.7.1, allowing authenticated attackers with Contributor-level access or above to create and download full-site backup archives. These backups can contain the entire WordPress installation, including database exports and sensitive configuration files such as wp-config.php.

Critical Impact

Authenticated attackers with minimal privileges (Contributor-level) can exfiltrate complete WordPress site backups including database credentials, user information, and sensitive configuration data.

Affected Products

  • FastDup – Fastest WordPress Migration & Duplicator plugin versions ≤ 2.7.1
  • WordPress installations using vulnerable FastDup plugin versions

Discovery Timeline

  • 2026-02-12 - CVE-2026-1104 published to NVD
  • 2026-02-12 - Last updated in NVD database

Technical Details for CVE-2026-1104

Vulnerability Analysis

This vulnerability is classified as CWE-862 (Missing Authorization), a broken access control flaw where the application fails to verify that a user has the required permissions to perform sensitive operations. In the context of the FastDup plugin, the REST API endpoints responsible for creating and downloading backup packages do not properly validate user capabilities before executing these operations.

The impact of this vulnerability is significant because backup archives typically contain complete copies of the WordPress installation, including the database with user credentials, plugin configurations, uploaded content, and the wp-config.php file which contains database connection strings and authentication keys. An attacker exploiting this vulnerability could gain access to sensitive information enabling further attacks such as database compromise, credential theft, or complete site takeover.

Root Cause

The root cause lies in the PackageApi.php file within the FastDup plugin's endpoint handling code. The REST API endpoints for backup creation and download operations lack proper capability checks that should verify the requesting user has administrative privileges before allowing access to these sensitive functions. WordPress provides capability checking functions such as current_user_can() that should be used to enforce authorization, but these checks are missing from the vulnerable code paths.

Attack Vector

The attack can be executed remotely over the network by any authenticated user with at least Contributor-level access to the WordPress installation. The attacker does not require any user interaction to exploit this vulnerability. The attack sequence involves:

  1. Authenticating to the WordPress site with a low-privileged account (Contributor or higher)
  2. Sending crafted REST API requests to the FastDup backup creation endpoints
  3. Triggering a full-site backup generation without proper authorization checks
  4. Downloading the resulting backup archive containing sensitive site data

The vulnerability is particularly dangerous in multi-user WordPress environments where untrusted users may have Contributor or Author roles, as these users would normally have no access to site backup functionality.

Detection Methods for CVE-2026-1104

Indicators of Compromise

  • Unexpected backup files appearing in the FastDup storage directories
  • REST API requests to FastDup endpoints from non-administrator users
  • Unusual network traffic patterns involving large file downloads from WordPress admin areas
  • Backup archive downloads logged for users without administrative privileges

Detection Strategies

  • Monitor WordPress REST API logs for requests to /wp-json/fastdup/ endpoints from low-privileged users
  • Implement file integrity monitoring on backup storage directories to detect unauthorized backup creation
  • Review WordPress user activity logs for backup-related actions by Contributor or Author accounts
  • Configure web application firewall (WAF) rules to alert on FastDup REST API access patterns

Monitoring Recommendations

  • Enable detailed logging for REST API requests in WordPress security plugins
  • Set up alerts for new file creation in FastDup's backup storage locations
  • Monitor for large outbound data transfers that may indicate backup exfiltration
  • Audit user accounts with Contributor-level access and above for suspicious activity

How to Mitigate CVE-2026-1104

Immediate Actions Required

  • Update FastDup plugin to a version newer than 2.7.1 immediately
  • Audit recent backup activity to identify any unauthorized backup creation or downloads
  • Review user accounts with Contributor or higher access for potential compromise
  • Consider temporarily disabling the FastDup plugin until patching is complete

Patch Information

The vulnerability was addressed in the FastDup plugin. Security patches are available through the official WordPress plugin repository. Administrators should update to the latest available version that includes the fix for this authorization bypass. The WordPress FastDup Change Log provides details on the security update.

Additional technical analysis is available from Wordfence Vulnerability Analysis and the vulnerable code can be reviewed at the WordPress FastDup Code Reference.

Workarounds

  • Restrict user registration and minimize accounts with Contributor-level access or higher
  • Implement additional authentication layers for WordPress REST API endpoints using security plugins
  • Use a Web Application Firewall (WAF) to block unauthorized access to FastDup API endpoints
  • Consider removing the FastDup plugin entirely if backup functionality is not critical until a patch is applied
bash
# Disable FastDup plugin via WP-CLI as a temporary mitigation
wp plugin deactivate fastdup

# List users with Contributor or higher roles for audit
wp user list --role=contributor,author,editor --fields=ID,user_login,user_email

# Check for recently created backup files (adjust path as needed)
find /var/www/html/wp-content/uploads/fastdup/ -type f -mtime -7 -ls

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score8.8

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

  • WordPress FastDup Change Log

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-6441: Canto WordPress Plugin Auth Bypass Flaw

  • CVE-2026-3488: WP Statistics Auth Bypass Vulnerability

  • CVE-2026-5234: LatePoint WordPress Auth Bypass Vulnerability

  • CVE-2026-5427: Kubio WordPress Plugin File Upload 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