CVE-2025-8489

9.8 CRITICAL

📋 TL;DR

This vulnerability in the King Addons for Elementor WordPress plugin allows unauthenticated attackers to register administrator-level user accounts due to improper role restrictions. Any WordPress site using vulnerable versions of this plugin is affected, potentially leading to complete site compromise.

💻 Affected Systems

Products:
  • King Addons for Elementor WordPress plugin
Versions: 24.12.92 to 51.1.14
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects sites with the plugin's registration functionality enabled.

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

Complete site takeover with administrative access, allowing attackers to install malware, deface the site, steal data, or use the site for further attacks.

🟠

Likely Case

Attackers create administrator accounts to gain persistent access, install backdoors, modify content, or exfiltrate sensitive data.

🟢

If Mitigated

With proper monitoring and detection, unauthorized admin account creation can be detected and blocked before significant damage occurs.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Simple HTTP POST request to vulnerable endpoint with crafted parameters.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 51.1.35

Vendor Advisory: https://plugins.trac.wordpress.org/browser/king-addons/tags/51.1.35/includes/widgets/Login_Register_Form/Login_Register_Form_Ajax.php#L160

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'King Addons for Elementor'. 4. Click 'Update Now' if available, or download version 51.1.35+ from WordPress repository. 5. Activate updated plugin.

🔧 Temporary Workarounds

Disable User Registration

all

Temporarily disable user registration functionality in WordPress settings

Block Vulnerable Endpoint

linux

Use web application firewall or .htaccess to block access to the vulnerable AJAX endpoint

# Add to .htaccess
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/wp-admin/admin-ajax\.php$
RewriteCond %{QUERY_STRING} action=king_ajax_register
RewriteRule ^ - [F]

🧯 If You Can't Patch

  • Disable the King Addons plugin completely
  • Implement strict monitoring for new user registrations and admin account creation

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for King Addons version between 24.12.92 and 51.1.14

Check Version:

wp plugin list --name='King Addons' --field=version

Verify Fix Applied:

Confirm plugin version is 51.1.35 or higher, and test registration functionality with non-admin role

📡 Detection & Monitoring

Log Indicators:

  • Multiple failed registration attempts followed by successful admin registration
  • User registration events with administrator role assigned
  • POST requests to /wp-admin/admin-ajax.php with action=king_ajax_register

Network Indicators:

  • HTTP POST requests to admin-ajax.php with role parameter set to administrator value
  • Unusual user agent strings during registration attempts

SIEM Query:

source="wordpress.log" AND "admin-ajax.php" AND "king_ajax_register" AND "role="

🔗 References

📤 Share & Export