CVE-2025-64245

4.3 MEDIUM

📋 TL;DR

This CVE describes a missing authorization vulnerability in the WordPress 'Import external attachments' plugin that allows attackers to exploit incorrectly configured access controls. It affects all versions up to and including 1.5.12, potentially allowing unauthorized users to perform actions intended for administrators.

💻 Affected Systems

Products:
  • WordPress Import external attachments plugin
Versions: n/a through <= 1.5.12
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress sites using the vulnerable plugin version. The vulnerability exists in the plugin's access control implementation.

⚠️ 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

An attacker could upload malicious files, modify plugin settings, or potentially gain administrative access to the WordPress site.

🟠

Likely Case

Unauthorized users could import external attachments without proper permissions, potentially uploading malicious content or exhausting server resources.

🟢

If Mitigated

With proper access controls and authentication checks, only authorized administrators could perform import operations.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires understanding of WordPress plugin structure and access control bypass techniques.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.5.12

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/import-external-attachments/vulnerability/wordpress-import-external-attachments-plugin-1-5-12-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find 'Import external attachments'
4. Click 'Update Now' if available
5. If no update available, deactivate and remove the plugin
6. Install the latest version from WordPress repository

🔧 Temporary Workarounds

Disable plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate import-external-attachments

Restrict access via .htaccess

linux

Add access restrictions to plugin directory

Order Deny,Allow
Deny from all

🧯 If You Can't Patch

  • Implement strict network access controls to limit who can access the WordPress admin interface
  • Enable detailed logging and monitoring for unauthorized access attempts to plugin functionality

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Installed Plugins for 'Import external attachments' version <= 1.5.12

Check Version:

wp plugin get import-external-attachments --field=version

Verify Fix Applied:

Verify plugin version is > 1.5.12 or plugin is removed/disabled

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized access attempts to import-external-attachments endpoints
  • Unexpected file uploads via plugin functionality

Network Indicators:

  • HTTP requests to /wp-content/plugins/import-external-attachments/ from unauthorized IPs

SIEM Query:

source="wordpress.log" AND "import-external-attachments" AND (status=403 OR user="unauthenticated")

🔗 References

📤 Share & Export