CVE-2024-38790

6.5 MEDIUM

📋 TL;DR

This CSRF vulnerability in the Smartsupp WordPress plugin allows attackers to trick authenticated administrators into performing unintended actions. It affects all WordPress sites using Smartsupp plugin versions up to 3.6.

💻 Affected Systems

Products:
  • Smartsupp – live chat, chatbots, AI and lead generation WordPress plugin
Versions: All versions up to and including 3.6
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires attacker to trick authenticated admin into clicking malicious link while logged into WordPress dashboard.

⚠️ 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 change plugin settings, modify chat configurations, or potentially inject malicious code into the live chat system affecting all site visitors.

🟠

Likely Case

Attackers modify chat widget settings, change chatbot behavior, or alter lead generation forms to capture sensitive user data.

🟢

If Mitigated

With proper CSRF protections, requests would be rejected unless they include valid anti-CSRF tokens, preventing unauthorized actions.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

CSRF attacks are well-understood and easy to weaponize once the vulnerable endpoints are identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version 3.7 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/smartsupp-live-chat/vulnerability/wordpress-smartsupp-plugin-3-6-cross-site-request-forgery-csrf-vulnerability?_s_id=cve

Restart Required: No

Instructions:

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

🔧 Temporary Workarounds

Temporary Plugin Deactivation

all

Disable the Smartsupp plugin until patched

wp plugin deactivate smartsupp-live-chat

CSRF Protection via .htaccess

linux

Add CSRF protection headers at web server level

Header set X-Frame-Options "SAMEORIGIN"
Header set Content-Security-Policy "frame-ancestors 'self'"

🧯 If You Can't Patch

  • Implement strict SameSite cookie policies for WordPress admin sessions
  • Use browser extensions that block CSRF attempts or enforce additional authentication for sensitive actions

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Smartsupp version. If version is 3.6 or lower, you are vulnerable.

Check Version:

wp plugin get smartsupp-live-chat --field=version

Verify Fix Applied:

After updating, verify version shows 3.7 or higher in WordPress plugins list.

📡 Detection & Monitoring

Log Indicators:

  • Multiple POST requests to /wp-admin/admin.php?page=smartsupp from same IP with different user agents
  • Unexpected changes to smartsupp settings in database

Network Indicators:

  • POST requests to Smartsupp admin endpoints without Referer headers or with external Referers

SIEM Query:

source="wordpress.log" AND "admin.php?page=smartsupp" AND status=200 AND NOT referer="*wp-admin*"

🔗 References

📤 Share & Export