CVE-2025-10660

6.5 MEDIUM

📋 TL;DR

This SQL injection vulnerability in the WP Dashboard Chat WordPress plugin allows authenticated attackers with Contributor-level access or higher to execute arbitrary SQL queries. Attackers can extract sensitive information from the database, including user credentials and other confidential data. All WordPress sites using vulnerable plugin versions are affected.

💻 Affected Systems

Products:
  • WP Dashboard Chat WordPress Plugin
Versions: All versions up to and including 1.0.3
Operating Systems: All platforms running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires authenticated user with Contributor role or higher; affects all WordPress installations with vulnerable plugin versions.

⚠️ 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 database compromise leading to credential theft, data exfiltration, privilege escalation, and potential site takeover.

🟠

Likely Case

Extraction of sensitive user data, admin credentials, and other database information by authenticated malicious users.

🟢

If Mitigated

Limited impact with proper input validation, parameterized queries, and least privilege access controls in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires authenticated access; SQL injection via 'id' parameter is straightforward for skilled attackers.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.0.3

Vendor Advisory: https://plugins.trac.wordpress.org/browser/wp-dashboard-chat

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find WP Dashboard Chat plugin. 4. Click 'Update Now' if update available. 5. If no update, deactivate and delete plugin immediately.

🔧 Temporary Workarounds

Temporary Plugin Deactivation

all

Disable the vulnerable plugin until patched version is available

wp plugin deactivate wp-dashboard-chat

Input Validation Filter

all

Add custom filter to sanitize 'id' parameter before processing

Add filter: add_filter('wp_dashboard_chat_id_param', 'intval');

🧯 If You Can't Patch

  • Remove Contributor and higher role access from untrusted users
  • Implement web application firewall (WAF) with SQL injection rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → WP Dashboard Chat version. If version is 1.0.3 or lower, you are vulnerable.

Check Version:

wp plugin get wp-dashboard-chat --field=version

Verify Fix Applied:

Verify plugin version is higher than 1.0.3 and check that SQL queries use prepared statements with proper parameterization.

📡 Detection & Monitoring

Log Indicators:

  • Unusual SQL queries in database logs
  • Multiple failed login attempts followed by SQL errors
  • Unexpected database queries from WordPress plugin files

Network Indicators:

  • SQL injection patterns in HTTP requests to wp-admin
  • Unusual database connection patterns from web server

SIEM Query:

source="web_logs" AND ("wp-dashboard-chat" OR "id='" OR "UNION SELECT") AND status=200

🔗 References

📤 Share & Export