CVE-2025-62088

5.4 MEDIUM

📋 TL;DR

This CVE describes a Server-Side Request Forgery (SSRF) vulnerability in the WordPress & WooCommerce Scraper Plugin, Import Data from Any Site. It allows attackers to make the vulnerable server send unauthorized requests to internal or external systems. WordPress sites using affected versions of this plugin are at risk.

💻 Affected Systems

Products:
  • WordPress & WooCommerce Scraper Plugin, Import Data from Any Site
Versions: n/a through 1.0.7
Operating Systems: Any OS running WordPress
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

Attackers could access internal services, exfiltrate sensitive data from internal networks, or perform attacks against other systems using the vulnerable server as a proxy.

🟠

Likely Case

Attackers scanning internal networks, accessing metadata services (like AWS/Azure instance metadata), or performing limited data exfiltration from accessible internal services.

🟢

If Mitigated

Limited impact if network segmentation restricts internal access and external requests are filtered, though some information disclosure may still occur.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

SSRF vulnerabilities typically have low exploitation complexity, especially in WordPress plugins where attack surface is well understood.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.0.8 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/wp_scraper/vulnerability/wordpress-wordpress-woocommerce-scraper-plugin-import-data-from-any-site-plugin-1-0-7-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 'WordPress & WooCommerce Scraper Plugin, Import Data from Any Site'. 4. Click 'Update Now' if update is available. 5. Alternatively, download version 1.0.8+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate wp_scraper

Network Filtering

linux

Implement network controls to restrict outbound requests from web server

iptables -A OUTPUT -p tcp --dport 80 -j DROP
iptables -A OUTPUT -p tcp --dport 443 -j DROP

🧯 If You Can't Patch

  • Remove the plugin entirely if not essential for business operations
  • Implement web application firewall (WAF) rules to detect and block SSRF patterns

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Installed Plugins for 'WordPress & WooCommerce Scraper Plugin, Import Data from Any Site' version 1.0.7 or earlier

Check Version:

wp plugin get wp_scraper --field=version

Verify Fix Applied:

Verify plugin version is 1.0.8 or later in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual outbound HTTP requests from web server to internal IPs or metadata services
  • Requests to unusual domains or IP ranges from web application

Network Indicators:

  • Web server making unexpected HTTP/HTTPS requests to internal network segments
  • Requests to cloud metadata endpoints (169.254.169.254, 100.100.100.200, etc.)

SIEM Query:

source="web_server_logs" AND (dest_ip IN (RFC1918_ranges) OR dest_ip="169.254.169.254" OR dest_ip="100.100.100.200") AND user_agent LIKE "%WordPress%"

🔗 References

📤 Share & Export