CVE-2025-11727

7.2 HIGH

📋 TL;DR

This stored XSS vulnerability in the Omnichannel for WooCommerce plugin allows unauthenticated attackers to inject malicious scripts that execute when users view affected pages. All WordPress sites using this plugin up to version 1.3.65 are vulnerable, potentially compromising user sessions and site integrity.

💻 Affected Systems

Products:
  • Omnichannel for WooCommerce: Google, Amazon, eBay & Walmart Integration – Powered by Codisto
Versions: All versions up to and including 1.3.65
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with vulnerable plugin versions are affected regardless of configuration.

⚠️ 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 administrator credentials, deface websites, redirect users to malicious sites, or install backdoors for persistent access.

🟠

Likely Case

Session hijacking, credential theft from users, defacement of public-facing pages, and malware distribution to visitors.

🟢

If Mitigated

With proper WAF rules and CSP headers, script execution could be blocked, limiting impact to script injection without execution.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

The vulnerability requires no authentication and exploitation is straightforward given the public code references.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.3.66 or later

Vendor Advisory: https://wordpress.org/plugins/codistoconnect/#developers

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Omnichannel for WooCommerce' plugin. 4. Click 'Update Now' if available. 5. If no update appears, manually download version 1.3.66+ from WordPress.org and replace plugin files.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate the plugin until patched

wp plugin deactivate codistoconnect

Implement Content Security Policy

all

Add CSP headers to block inline script execution

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to nginx config: add_header Content-Security-Policy "default-src 'self'; script-src 'self'";

🧯 If You Can't Patch

  • Implement Web Application Firewall (WAF) rules to block XSS payloads
  • Disable plugin functionality or restrict access to affected endpoints

🔍 How to Verify

Check if Vulnerable:

Check plugin version in WordPress admin under Plugins → Installed Plugins

Check Version:

wp plugin get codistoconnect --field=version

Verify Fix Applied:

Verify plugin version is 1.3.66 or higher and test sync() function with XSS payloads

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to plugin endpoints
  • JavaScript payloads in request parameters
  • Multiple failed XSS attempts

Network Indicators:

  • Malicious script tags in HTTP traffic to plugin endpoints
  • Unusual outbound connections after page views

SIEM Query:

source="wordpress.log" AND "codistoconnect" AND ("<script>" OR "javascript:" OR "onerror=" OR "onload=")

🔗 References

📤 Share & Export