CVE-2024-49652

9.9 CRITICAL

📋 TL;DR

This vulnerability allows attackers to upload arbitrary files, including web shells, to WordPress sites running the vulnerable ReneeCussack 3D Work In Progress plugin. Attackers can achieve remote code execution and potentially compromise the entire web server. All WordPress sites using affected versions of this plugin are vulnerable.

💻 Affected Systems

Products:
  • ReneeCussack 3D Work In Progress WordPress Plugin
Versions: n/a through 1.0.3
Operating Systems: All platforms running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all WordPress installations with the vulnerable plugin version enabled.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete server compromise leading to data theft, ransomware deployment, or use as a pivot point for attacking internal networks.

🟠

Likely Case

Web shell installation allowing persistent backdoor access, data exfiltration, and further exploitation of the WordPress environment.

🟢

If Mitigated

File uploads blocked or properly validated, preventing malicious file execution while maintaining plugin functionality.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple file upload exploitation with publicly available proof-of-concept.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.0.4 or later

Vendor Advisory: https://patchstack.com/database/vulnerability/renee-work-in-progress/wordpress-3d-work-in-progress-plugin-1-0-3-arbitrary-file-upload-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find '3D Work In Progress' plugin. 4. Click 'Update Now' if available. 5. If no update available, deactivate and delete the plugin immediately.

🔧 Temporary Workarounds

Disable Plugin

all

Deactivate and remove the vulnerable plugin from WordPress

wp plugin deactivate renee-work-in-progress
wp plugin delete renee-work-in-progress

Web Server File Upload Restrictions

linux

Configure web server to block uploads of executable files to plugin directories

# Apache: Add to .htaccess in uploads directory
<FilesMatch "\.(php|phtml|php3|php4|php5|php7|phps|php-s|pht|phar|shtml|sh|cgi|pl|asp|aspx|jsp|py|rb|exe|dll|bat|cmd|ps1|sh)$">
    Order Allow,Deny
    Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Immediately disable and remove the plugin from all WordPress installations
  • Implement web application firewall rules to block file uploads to vulnerable endpoints

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for '3D Work In Progress' version 1.0.3 or earlier

Check Version:

wp plugin get renee-work-in-progress --field=version

Verify Fix Applied:

Verify plugin version is 1.0.4 or later, or confirm plugin is not installed

📡 Detection & Monitoring

Log Indicators:

  • Unusual file uploads to /wp-content/uploads/ directory
  • POST requests to plugin-specific upload endpoints
  • Execution of PHP files from upload directories

Network Indicators:

  • HTTP POST requests with file uploads to plugin endpoints
  • Unusual outbound connections from web server

SIEM Query:

source="web_server" AND (uri_path="/wp-content/plugins/renee-work-in-progress/*" OR uri_path="/wp-content/uploads/*") AND http_method="POST" AND content_type="multipart/form-data"

🔗 References

📤 Share & Export