CVE-2023-33309

7.1 HIGH

📋 TL;DR

Unauthenticated Reflected Cross-Site Scripting (XSS) vulnerability in the Awesome Motive Duplicator Pro WordPress plugin allows attackers to inject malicious scripts via crafted URLs. When users click malicious links, attackers can steal session cookies, redirect users, or perform actions on their behalf. This affects WordPress sites running Duplicator Pro plugin version 4.5.11 or earlier.

💻 Affected Systems

Products:
  • Awesome Motive Duplicator Pro WordPress Plugin
Versions: <= 4.5.11
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with Duplicator Pro plugin installed and activated.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers steal administrator session cookies, gain full control of WordPress site, install backdoors, deface website, or exfiltrate sensitive data.

🟠

Likely Case

Attackers steal user session cookies, redirect users to phishing sites, or perform limited actions within the user's context.

🟢

If Mitigated

With proper Content Security Policy (CSP) headers and input validation, impact is limited to script execution in isolated contexts.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Exploitation requires user interaction (clicking malicious link) but is trivial to weaponize in phishing campaigns.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.5.12 or later

Vendor Advisory: https://patchstack.com/database/vulnerability/duplicator-pro/wordpress-duplicator-pro-plugin-4-5-11-reflected-cross-site-scripting-xss-vulnerability

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Duplicator Pro and click 'Update Now'. 4. Verify version is 4.5.12 or higher.

🔧 Temporary Workarounds

Implement Content Security Policy

all

Add CSP headers to restrict script execution sources

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to nginx config: add_header Content-Security-Policy "default-src 'self'; script-src 'self'";

Disable Plugin

all

Temporarily disable Duplicator Pro plugin until patched

wp plugin deactivate duplicator-pro
Or via WordPress admin: Plugins > Installed Plugins > Deactivate under Duplicator Pro

🧯 If You Can't Patch

  • Implement Web Application Firewall (WAF) rules to block XSS payloads in URLs
  • Restrict plugin access to trusted IP addresses only

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Duplicator Pro version

Check Version:

wp plugin list --name=duplicator-pro --field=version

Verify Fix Applied:

Verify Duplicator Pro version is 4.5.12 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • Unusual GET requests with script tags in query parameters
  • Multiple 404 errors for Duplicator Pro endpoints with suspicious parameters

Network Indicators:

  • HTTP requests containing <script>, javascript:, or eval() in URL parameters to Duplicator Pro endpoints

SIEM Query:

source="web_logs" AND (url="*duplicator-pro*" AND (url="*<script>*" OR url="*javascript:*" OR url="*eval(*"))

🔗 References

📤 Share & Export