CVE-2024-53714

7.1 HIGH

📋 TL;DR

This vulnerability in the WordPress 'Continue Shopping From Cart' plugin allows attackers to perform Cross-Site Request Forgery (CSRF) attacks that lead to Stored Cross-Site Scripting (XSS). Attackers can trick authenticated administrators into executing malicious actions that inject persistent scripts into the website. All WordPress sites using vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • Continue Shopping From Cart WordPress Plugin
Versions: n/a through 1.3
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires plugin to be installed and activated on WordPress site.

⚠️ 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 through admin account compromise, data theft, malware distribution to visitors, and defacement.

🟠

Likely Case

Unauthorized content modification, session hijacking of admin users, and injection of malicious scripts affecting site visitors.

🟢

If Mitigated

Limited impact with proper CSRF tokens and content security policies in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Requires social engineering to trick authenticated admin into clicking malicious link.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/continue-shopping-from-cart-page/vulnerability/wordpress-continue-shopping-from-cart-plugin-1-3-csrf-to-stored-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Continue Shopping From Cart' plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete plugin, then install fresh version 1.4+ from WordPress repository.

🔧 Temporary Workarounds

Implement CSRF Protection

WordPress

Add nonce verification to plugin forms and AJAX requests

Add wp_nonce_field() to forms and check with wp_verify_nonce()

Content Security Policy

all

Implement CSP headers to restrict script execution

Add header("Content-Security-Policy: script-src 'self'") to .htaccess or server config

🧯 If You Can't Patch

  • Deactivate and remove the vulnerable plugin immediately
  • Implement web application firewall rules to block suspicious form submissions

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for 'Continue Shopping From Cart' version 1.3 or earlier

Check Version:

wp plugin list --name='continue-shopping-from-cart' --field=version

Verify Fix Applied:

Confirm plugin version is 1.4 or later in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to plugin endpoints
  • Multiple failed nonce verification attempts
  • Suspicious referrer headers

Network Indicators:

  • Requests to plugin endpoints without proper referrer or nonce
  • Cross-origin requests to admin-ajax.php

SIEM Query:

source="wordpress.log" AND ("continue-shopping" OR "admin-ajax.php") AND status=200 AND method=POST

🔗 References

📤 Share & Export