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-2020-11738

CVE-2020-11738: Duplicator Path Traversal Vulnerability

CVE-2020-11738 is a path traversal vulnerability in the Duplicator plugin for WordPress that allows attackers to access unauthorized files. This article covers the technical details, affected versions, and mitigation.

Published: March 11, 2026

CVE-2020-11738 Overview

CVE-2020-11738 is a Directory Traversal vulnerability affecting the Snap Creek Duplicator plugin for WordPress. The vulnerability exists in versions prior to 1.3.28 (Lite) and 3.8.7.1 (Pro), allowing unauthenticated attackers to read arbitrary files from the web server by manipulating the file parameter in the duplicator_download or duplicator_init endpoints using path traversal sequences such as ../.

This vulnerability is particularly dangerous because the Duplicator plugin is widely used for WordPress site migration and backup purposes, with over one million active installations. Successful exploitation allows attackers to download sensitive configuration files including wp-config.php, which contains database credentials and authentication keys.

Critical Impact

This vulnerability has been actively exploited in the wild and is listed in CISA's Known Exploited Vulnerabilities (KEV) catalog. Attackers can leverage this flaw to extract sensitive configuration files, database credentials, and potentially gain full control of WordPress installations.

Affected Products

  • Awesomemotive Duplicator (Lite) versions before 1.3.28
  • Awesomemotive Duplicator Pro versions before 3.8.7.1
  • WordPress installations running vulnerable Duplicator plugin versions

Discovery Timeline

  • 2020-04-13 - CVE-2020-11738 published to NVD
  • 2026-02-02 - Last updated in NVD database

Technical Details for CVE-2020-11738

Vulnerability Analysis

The Snap Creek Duplicator plugin implements file download functionality through the duplicator_download and duplicator_init AJAX actions. The vulnerability stems from insufficient input validation on the file parameter passed to these endpoints. When processing file download requests, the plugin fails to properly sanitize path traversal sequences, allowing attackers to escape the intended directory and access files anywhere on the file system that the web server process has read permissions for.

The attack requires no authentication, making it trivially exploitable by any remote attacker who can reach the WordPress installation. The most common exploitation target is the wp-config.php file, which contains database connection strings, authentication salts, and other sensitive configuration data. With access to these credentials, attackers can directly connect to the database, extract user data, or escalate their access to achieve full site compromise.

According to Wordfence's analysis, active attacks exploiting this vulnerability began shortly after the patch was released, targeting sites that had not yet updated.

Root Cause

The root cause is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as Path Traversal. The vulnerable code accepts user-supplied input for the file parameter and uses it directly in file system operations without properly validating or sanitizing the path. Specifically, the code fails to:

  1. Canonicalize the path to resolve relative path components
  2. Verify the resolved path remains within the intended directory
  3. Reject path traversal sequences such as ../ or encoded variants

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker crafts a malicious HTTP request to the WordPress AJAX handler, specifying a file parameter containing directory traversal sequences. The vulnerable endpoint processes this request and returns the contents of the targeted file.

A typical exploitation scenario targets the wp-config.php file located in the WordPress root directory. By sending a request with path traversal sequences pointing to this file relative to the plugin's expected directory, the attacker receives the complete configuration file contents, including:

  • Database hostname, username, and password
  • WordPress authentication keys and salts
  • Table prefix and other configuration options
  • Potentially hardcoded API keys or custom credentials

For detailed technical exploitation information, refer to the Packet Storm Security advisory.

Detection Methods for CVE-2020-11738

Indicators of Compromise

  • HTTP requests to /wp-admin/admin-ajax.php containing action=duplicator_download or action=duplicator_init with suspicious file parameters
  • Web server access logs showing requests with ../ sequences targeting WordPress AJAX endpoints
  • Unexpected access to wp-config.php or other sensitive configuration files
  • Authentication failures or suspicious database access from unfamiliar IP addresses following potential credential theft

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block path traversal patterns in request parameters
  • Configure intrusion detection systems (IDS) to alert on requests containing ../ sequences to WordPress admin AJAX endpoints
  • Monitor web server access logs for requests to admin-ajax.php with duplicator_download or duplicator_init actions containing path traversal indicators
  • Deploy file integrity monitoring on sensitive configuration files to detect unauthorized access attempts

Monitoring Recommendations

  • Enable verbose logging for WordPress AJAX requests and review regularly for anomalies
  • Set up real-time alerting for any access attempts to wp-config.php through web requests
  • Monitor database authentication logs for connections from unexpected sources that may indicate credential theft
  • Review Duplicator plugin activity logs for unusual file download operations

How to Mitigate CVE-2020-11738

Immediate Actions Required

  • Update Duplicator (Lite) to version 1.3.28 or later immediately
  • Update Duplicator Pro to version 3.8.7.1 or later immediately
  • Rotate WordPress database credentials and authentication keys/salts if exploitation is suspected
  • Review web server access logs for evidence of exploitation attempts
  • Consider temporarily disabling the Duplicator plugin if immediate patching is not possible

Patch Information

The vendor has released patched versions that properly validate file paths before processing download requests. The fix ensures that the file parameter cannot escape the intended directory through path traversal sequences.

  • Duplicator Lite: Update to version 1.3.28 or later via the WordPress plugin repository
  • Duplicator Pro: Update to version 3.8.7.1 or later through the SnapCreek customer portal

For complete changelog information, refer to the SnapCreek Duplicator Changelog.

Workarounds

  • Implement WAF rules to block requests containing path traversal sequences (../, ..%2f, %2e%2e/) in the file parameter
  • Restrict access to admin-ajax.php from untrusted IP addresses if feasible
  • Temporarily remove or deactivate the Duplicator plugin until patching can be completed
  • Apply filesystem permissions to restrict web server read access to sensitive files where possible
bash
# Example: Add Apache mod_rewrite rules to block path traversal attempts
# Add to .htaccess in WordPress root directory
RewriteEngine On
RewriteCond %{QUERY_STRING} (\.\./) [NC,OR]
RewriteCond %{QUERY_STRING} (\.\.%2f) [NC,OR]
RewriteCond %{QUERY_STRING} (%2e%2e/) [NC]
RewriteRule ^wp-admin/admin-ajax\.php$ - [F,L]

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechAwesomemotive Duplicator

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability94.28%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CISA KEV Information
  • In CISA KEVYes
  • CWE References
  • CWE-22
  • Technical References
  • Packet Storm Security Exploit

  • Packet Storm Security Exploit

  • MITRE CWE Definition

  • Wordfence Blog on Attack

  • CISA Known Exploited Vulnerability
  • Vendor Resources
  • SnapCreek Duplicator Changelog
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal Vulnerability
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