CVE-2024-8490

8.8 HIGH

📋 TL;DR

This CSRF vulnerability in the PropertyHive WordPress plugin allows unauthenticated attackers to change administrator account details (name, email, password) by tricking an admin into clicking a malicious link. All WordPress sites using PropertyHive versions up to 2.0.19 are affected. Attackers can gain administrative access to vulnerable WordPress installations.

💻 Affected Systems

Products:
  • PropertyHive WordPress Plugin
Versions: All versions up to and including 2.0.19
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with PropertyHive plugin active. Attack requires administrator to be logged in and tricked into clicking malicious link.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete site takeover where attacker changes admin password and email, then uses administrative privileges to install backdoors, deface the site, or steal sensitive data.

🟠

Likely Case

Attacker gains administrative access to WordPress dashboard, potentially modifying content, installing malicious plugins, or accessing sensitive user data.

🟢

If Mitigated

Attack fails due to proper CSRF protections, user awareness training, or network segmentation limiting attack surface.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

CSRF attacks are well-understood and easy to weaponize. No public exploit code needed - standard CSRF techniques work.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.0.20 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3152548/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find PropertyHive plugin. 4. Click 'Update Now' if update available. 5. If no update shows, manually download version 2.0.20+ from WordPress.org and replace plugin files.

🔧 Temporary Workarounds

Temporary Plugin Deactivation

all

Disable PropertyHive plugin until patched

wp plugin deactivate propertyhive

CSRF Protection Middleware

all

Implement additional CSRF protection at web server or application firewall level

🧯 If You Can't Patch

  • Implement strict Content Security Policy (CSP) headers to restrict script execution
  • Use web application firewall (WAF) rules to block suspicious POST requests to /wp-admin/admin-ajax.php

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → PropertyHive → Version. If version is 2.0.19 or lower, you are vulnerable.

Check Version:

wp plugin get propertyhive --field=version

Verify Fix Applied:

After updating, verify PropertyHive version is 2.0.20 or higher in WordPress plugins list.

📡 Detection & Monitoring

Log Indicators:

  • Multiple POST requests to /wp-admin/admin-ajax.php?action=save_account_details from unusual sources
  • Admin password/email change logs without corresponding admin login

Network Indicators:

  • CSRF attack patterns in web server logs
  • Suspicious referrer headers in admin-ajax.php requests

SIEM Query:

source="web_logs" AND uri_path="/wp-admin/admin-ajax.php" AND query_string="*action=save_account_details*" AND NOT user_agent="*WordPress*"

🔗 References

📤 Share & Export