CVE-2025-32668

8.1 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP include/require statements. It affects WordPress Real Estate Manager plugin users running versions up to 7.3, potentially enabling unauthorized file access and code execution.

💻 Affected Systems

Products:
  • WordPress Real Estate Manager Plugin
Versions: n/a through 7.3
Operating Systems: All operating systems running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with vulnerable plugin version.

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

Remote code execution leading to complete server compromise, data theft, and website defacement.

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials) and limited code execution.

🟢

If Mitigated

Minimal impact if proper file permissions and web server hardening are implemented.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple HTTP requests can trigger the vulnerability without authentication.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 7.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/real-estate-manager/vulnerability/wordpress-real-estate-manager-plugin-7-3-local-file-inclusion-vulnerability-2?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Real Estate Manager plugin. 4. Click 'Update Now' if available. 5. If no update appears, manually download version 7.4+ from WordPress repository and replace files.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched.

wp plugin deactivate real-estate-manager

Restrict File Inclusion

linux

Add PHP configuration to disable dangerous functions.

php_admin_value open_basedir /var/www/html
php_admin_value allow_url_include Off

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict plugin directory permissions to read-only for web server user

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Real Estate Manager for version number. If version is 7.3 or earlier, system is vulnerable.

Check Version:

wp plugin get real-estate-manager --field=version

Verify Fix Applied:

Confirm plugin version is 7.4 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • HTTP requests with suspicious include parameters like ?file=../../etc/passwd

Network Indicators:

  • HTTP GET/POST requests containing file inclusion patterns to plugin endpoints

SIEM Query:

source="web_logs" AND (uri="*real-estate-manager*" AND (param="*file=*" OR param="*include=*" OR param="*require=*"))

🔗 References

📤 Share & Export