CVE-2024-32954

9.1 CRITICAL

📋 TL;DR

This vulnerability allows attackers to upload arbitrary files to WordPress sites running the Tribulant Newsletters plugin. Attackers can upload malicious files like PHP shells to gain remote code execution. All WordPress sites using Newsletters plugin versions up to 4.9.5 are affected.

💻 Affected Systems

Products:
  • WordPress Tribulant Newsletters plugin
Versions: All versions up to and including 4.9.5
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects both free and premium versions of the plugin. WordPress multisite installations may be particularly vulnerable.

⚠️ 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, malware distribution, or backdoor installation 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

Exploitation requires no authentication and is trivial with publicly available proof-of-concept code.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.9.6 or later

Vendor Advisory: https://patchstack.com/database/vulnerability/newsletters-lite/wordpress-newsletters-plugin-4-9-5-arbitrary-file-upload-vulnerability

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Newsletters' plugin. 4. Click 'Update Now' if update available. 5. If no update appears, manually download version 4.9.6+ from WordPress.org and replace plugin files.

🔧 Temporary Workarounds

Disable plugin

all

Temporarily disable the Newsletters plugin until patched

wp plugin deactivate newsletters-lite

Restrict file uploads

linux

Configure web server to block PHP file uploads to plugin directories

# In .htaccess for Apache: <FilesMatch "\.(php|phtml|php3|php4|php5|php7|phps)$">
    Deny from all
</FilesMatch>
# In nginx config: location ~ \.(php|phtml|php3|php4|php5|php7|phps)$ {
    deny all;
}

🧯 If You Can't Patch

  • Immediately disable the Newsletters plugin via WordPress admin or command line
  • Implement web application firewall rules to block file uploads to /wp-content/plugins/newsletters/ directories

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for Newsletters version 4.9.5 or earlier

Check Version:

wp plugin get newsletters-lite --field=version

Verify Fix Applied:

Confirm plugin version is 4.9.6 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • File uploads to /wp-content/plugins/newsletters/ directories
  • POST requests to newsletters.php with file parameters
  • Unusual file extensions (.php, .phtml) in upload logs

Network Indicators:

  • HTTP POST requests containing multipart/form-data to newsletters endpoints
  • Unexpected file uploads to plugin directories

SIEM Query:

source="web_logs" AND (uri_path="/wp-content/plugins/newsletters/*" AND method="POST" AND content_type="multipart/form-data")

🔗 References

📤 Share & Export