CVE-2025-52708

7.5 HIGH

📋 TL;DR

This CVE describes a PHP Local File Inclusion vulnerability in the RealMag777 HUSKY WordPress plugin. Attackers can exploit improper filename control in include/require statements to read sensitive files on the server. All WordPress sites using HUSKY plugin versions up to 1.3.7 are affected.

💻 Affected Systems

Products:
  • RealMag777 HUSKY WordPress Plugin
Versions: n/a through 1.3.7
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with HUSKY plugin enabled. No special configuration needed.

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

Full server compromise via reading sensitive files like /etc/passwd, wp-config.php, or executing arbitrary PHP code leading to remote code execution.

🟠

Likely Case

Information disclosure of sensitive configuration files, database credentials, or other server files.

🟢

If Mitigated

Limited impact if file permissions are restrictive and sensitive files are properly protected.

🌐 Internet-Facing: HIGH - WordPress plugins are typically internet-facing and this vulnerability requires no authentication.
🏢 Internal Only: MEDIUM - Internal systems could still be targeted via phishing or compromised internal accounts.

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Simple path traversal or file inclusion attacks can exploit this vulnerability without authentication.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.3.8 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/woocommerce-products-filter/vulnerability/wordpress-husky-plugin-1-3-7-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find HUSKY plugin and update to version 1.3.8 or later. 4. Verify update completed successfully.

🔧 Temporary Workarounds

Disable HUSKY Plugin

linux

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate woocommerce-products-filter

Restrict File Access

all

Add .htaccess rules to block direct access to plugin files

# Add to .htaccess in plugin directory:
Order Deny,Allow
Deny from all

🧯 If You Can't Patch

  • Remove HUSKY plugin completely from production systems
  • Implement web application firewall rules to block file inclusion patterns

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → HUSKY version. If version is 1.3.7 or lower, system is vulnerable.

Check Version:

wp plugin get woocommerce-products-filter --field=version

Verify Fix Applied:

Verify HUSKY plugin version is 1.3.8 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file access patterns in PHP error logs
  • Requests containing '../' or file inclusion patterns to HUSKY endpoints

Network Indicators:

  • HTTP requests with file inclusion parameters to /wp-content/plugins/woocommerce-products-filter/

SIEM Query:

source="web_logs" AND (uri="*woocommerce-products-filter*" AND (params="*../*" OR params="*file=*"))

🔗 References

📤 Share & Export