CVE-2024-10552

6.4 MEDIUM

📋 TL;DR

This stored XSS vulnerability in the Flexmls IDX WordPress plugin allows authenticated attackers with Contributor access or higher to inject malicious scripts via API key/secret parameters. The scripts execute when users view compromised pages, potentially affecting all visitors. WordPress sites using vulnerable plugin versions are at risk.

💻 Affected Systems

Products:
  • Flexmls IDX WordPress Plugin
Versions: All versions up to and including 3.14.26
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires Contributor-level WordPress user access or higher. Partial patch in 3.14.25 may not fully mitigate the issue.

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

Attackers could steal admin credentials, deface websites, redirect users to malicious sites, or install backdoors for persistent access.

🟠

Likely Case

Attackers inject malicious scripts to steal user session cookies, perform phishing attacks, or modify page content.

🟢

If Mitigated

With proper input validation and output escaping, the attack surface is eliminated, though existing injections may persist until cleaned.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires authenticated access but is technically simple once access is obtained.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.14.27 or later

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

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Flexmls IDX plugin. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and manually update.

🔧 Temporary Workarounds

Remove Contributor Access

all

Temporarily restrict Contributor-level user roles to prevent exploitation.

Disable Plugin

all

Deactivate the Flexmls IDX plugin until patched.

🧯 If You Can't Patch

  • Implement strict input validation and output escaping in custom code
  • Use web application firewall (WAF) rules to block XSS payloads

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Flexmls IDX > Version. If version is 3.14.26 or earlier, you are vulnerable.

Check Version:

wp plugin list --name=flexmls-idx --field=version

Verify Fix Applied:

After updating, verify version is 3.14.27 or later. Test API key/secret fields for proper sanitization.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to admin-intro-api.php with script tags in parameters
  • Multiple failed login attempts followed by API configuration changes

Network Indicators:

  • Inbound requests containing <script> tags in API key/secret parameters
  • Outbound connections to suspicious domains from WordPress pages

SIEM Query:

source="wordpress.log" AND ("admin-intro-api.php" AND ("api_key" OR "api_secret") AND ("<script>" OR "javascript:"))

🔗 References

📤 Share & Export