CVE-2024-51788

10.0 CRITICAL

📋 TL;DR

This vulnerability allows attackers to upload arbitrary files, including web shells, to WordPress servers running the Novel Design Store Directory plugin. Attackers can gain full control of affected websites. All WordPress sites using this plugin version 4.3.0 or earlier are affected.

💻 Affected Systems

Products:
  • WordPress Novel Design Store Directory Plugin
Versions: n/a through 4.3.0
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with this specific plugin installed and activated.

⚠️ 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 part of a botnet.

🟠

Likely Case

Website defacement, data exfiltration, and installation of backdoors for persistent access.

🟢

If Mitigated

Limited impact if file uploads are restricted at web server level or WAF blocks malicious uploads.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple HTTP POST request with malicious file upload can exploit this vulnerability.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.3.1 or later

Vendor Advisory: https://patchstack.com/database/vulnerability/noveldesign-store-directory/wordpress-the-novel-design-store-directory-plugin-4-3-0-arbitrary-file-upload-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins. 3. Find 'The Novel Design Store Directory'. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete plugin immediately.

🔧 Temporary Workarounds

Disable Plugin

all

Deactivate and remove the vulnerable plugin

wp plugin deactivate noveldesign-store-directory
wp plugin delete noveldesign-store-directory

Web Server File Restriction

all

Configure web server to block execution of uploaded files in upload directories

# Apache: Add to .htaccess in uploads directory
<FilesMatch "\.(php|php5|phtml|pl|py|jsp|asp|sh|cgi)$">
  Order Allow,Deny
  Deny from all
</FilesMatch>
# Nginx: Add to server block
location ~* /\.(php|php5|phtml|pl|py|jsp|asp|sh|cgi)$ {
  deny all;
}

🧯 If You Can't Patch

  • Immediately deactivate and remove the plugin from all WordPress installations.
  • Implement web application firewall (WAF) rules to block file uploads to the affected plugin endpoints.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > The Novel Design Store Directory. If version is 4.3.0 or earlier, you are vulnerable.

Check Version:

wp plugin get noveldesign-store-directory --field=version

Verify Fix Applied:

Verify plugin version is 4.3.1 or later, or confirm plugin is completely removed from plugins directory.

📡 Detection & Monitoring

Log Indicators:

  • HTTP POST requests to /wp-content/plugins/noveldesign-store-directory/ upload endpoints
  • Unusual file uploads to upload directories with executable extensions

Network Indicators:

  • POST requests with file uploads to plugin-specific endpoints
  • Subsequent requests to newly uploaded PHP files

SIEM Query:

source="web_server_logs" AND (uri_path="/wp-content/plugins/noveldesign-store-directory/*" AND method="POST")

🔗 References

📤 Share & Export