CVE-2025-58819

9.1 CRITICAL

📋 TL;DR

This vulnerability allows attackers to upload arbitrary files, including web shells, to WordPress servers running the Bulk Featured Image plugin. Attackers can gain full control of affected websites. All WordPress sites using vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • WordPress Bulk Featured Image Plugin
Versions: n/a through 1.2.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with this specific plugin 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 part of a botnet.

🟠

Likely Case

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

🟢

If Mitigated

Limited impact if file uploads are restricted at web server level or plugin is disabled.

🌐 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: 1.2.3 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/bulk-featured-image/vulnerability/wordpress-bulk-featured-image-plugin-1-2-2-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 Bulk Featured Image. 4. Click 'Update Now' if available. 5. If no update available, disable and remove the plugin.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched.

wp plugin deactivate bulk-featured-image

Restrict Upload Directory

linux

Set web server permissions to prevent PHP execution in upload directories.

chmod -R 644 /path/to/wordpress/wp-content/uploads/
find /path/to/wordpress/wp-content/uploads/ -name '*.php' -delete

🧯 If You Can't Patch

  • Remove the Bulk Featured Image plugin entirely from your WordPress installation.
  • Implement web application firewall (WAF) rules to block file uploads to the affected plugin endpoint.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Bulk Featured Image version. If version is 1.2.2 or earlier, you are vulnerable.

Check Version:

wp plugin get bulk-featured-image --field=version

Verify Fix Applied:

Verify plugin version is 1.2.3 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • HTTP POST requests to /wp-admin/admin-ajax.php with file upload parameters
  • Unexpected .php files in wp-content/uploads directory

Network Indicators:

  • Unusual outbound connections from web server post-file upload
  • HTTP requests with suspicious file extensions in upload parameters

SIEM Query:

source="web_server_logs" AND (uri_path="/wp-admin/admin-ajax.php" AND method="POST" AND (file_extension="php" OR file_extension="phtml"))

🔗 References

📤 Share & Export