CVE-2025-49335

4.9 MEDIUM

📋 TL;DR

This SSRF vulnerability in the WordPress External Media plugin allows attackers to make unauthorized requests from the server to internal or external systems. It affects all WordPress sites using External Media plugin versions up to 1.0.36. Attackers can potentially access internal services or perform port scanning through the vulnerable server.

💻 Affected Systems

Products:
  • WordPress External Media plugin
Versions: n/a through 1.0.36
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with External Media 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

Attackers could access internal services, exfiltrate sensitive data from internal networks, perform port scanning, or chain with other vulnerabilities to achieve remote code execution.

🟠

Likely Case

Information disclosure from internal services, port scanning of internal networks, or accessing metadata services in cloud environments.

🟢

If Mitigated

Limited to accessing only allowed external resources if proper network segmentation and egress filtering are in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

SSRF typically requires some level of access to trigger the vulnerable functionality.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.0.37 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/external-media/vulnerability/wordpress-external-media-plugin-1-0-36-server-side-request-forgery-ssrf-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find External Media plugin. 4. Click 'Update Now' if available. 5. Alternatively, download version 1.0.37+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable External Media plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate external-media

Network egress filtering

all

Restrict outbound connections from web server to only necessary external services

🧯 If You Can't Patch

  • Implement web application firewall rules to block SSRF patterns
  • Restrict network access from web server to internal services

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → External Media → Version number

Check Version:

wp plugin get external-media --field=version

Verify Fix Applied:

Verify plugin version is 1.0.37 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • Unusual outbound HTTP requests from web server to internal IPs
  • Requests to metadata services (169.254.169.254)
  • Multiple failed connection attempts to various ports

Network Indicators:

  • Web server making unexpected outbound connections
  • Traffic to internal network segments from web server

SIEM Query:

source="web_server_logs" AND (dest_ip=~"10.*|172.16.*|192.168.*|169.254.169.254" OR uri_contains="url=http")

🔗 References

📤 Share & Export