CVE-2025-32150

7.5 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 leading to sensitive information disclosure or 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. PHP configuration may affect exploitability.

⚠️ 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 through local file inclusion leading to remote code execution, sensitive file disclosure (including configuration files with credentials), and complete system takeover.

🟠

Likely Case

Sensitive information disclosure (database credentials, configuration files), limited file read access, and potential privilege escalation through file manipulation.

🟢

If Mitigated

Limited impact with proper file permissions, web server restrictions, and security controls preventing directory traversal.

🌐 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. Public exploit details available through security advisories.

🛠️ 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?_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 update available
5. If no update available, download version 7.4+ from WordPress repository
6. Deactivate old plugin, upload new version, activate

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate real-estate-manager

Restrict File Access

linux

Configure web server to restrict file inclusion paths

# In Apache .htaccess:
php_admin_value open_basedir "/var/www/html/"
# In nginx php-fpm config:
php_admin_value[open_basedir] = /var/www/html/

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict plugin access to authenticated users only through WordPress role management

🔍 How to Verify

Check if Vulnerable:

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

Check Version:

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

Verify Fix Applied:

Verify plugin version is 7.4 or later in WordPress admin panel. Test file inclusion attempts should fail.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • Multiple requests with 'include' or 'require' parameters
  • Access to sensitive files like /etc/passwd, wp-config.php

Network Indicators:

  • HTTP requests with file path parameters (e.g., ?file=../../etc/passwd)
  • Unusual file extensions in URLs

SIEM Query:

source="web_logs" AND (uri="*include*" OR uri="*require*" OR uri="*file=*" OR uri="*path=*") AND status=200

🔗 References

📤 Share & Export