CVE-2025-32541

7.1 HIGH

📋 TL;DR

This vulnerability allows attackers to inject malicious scripts into web pages viewed by other users through the WooCommerce Sales MIS Report WordPress plugin. It affects WordPress sites using vulnerable versions of this plugin, potentially compromising user sessions and data. The vulnerability is reflected XSS, meaning the malicious script comes from the current HTTP request.

💻 Affected Systems

Products:
  • WooCommerce Sales MIS Report WordPress Plugin
Versions: All versions up to and including 4.0.3
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with the vulnerable plugin activated. Requires the plugin to be installed and active.

⚠️ 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, hijack user sessions, deface websites, or redirect users to malicious sites, potentially leading to complete site compromise and data theft.

🟠

Likely Case

Attackers will typically use this to steal session cookies, perform actions as authenticated users, or redirect users to phishing pages to harvest credentials.

🟢

If Mitigated

With proper input validation and output encoding, the malicious scripts would be neutralized before reaching users, preventing any exploitation.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Reflected XSS vulnerabilities are commonly exploited and require minimal technical skill. Attackers can craft malicious URLs containing the payload.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.0.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/woocommerce-mis-report/vulnerability/wordpress-woocommerce-sales-mis-report-plugin-4-0-3-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'WooCommerce Sales MIS Report'. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate woocommerce-mis-report

Web Application Firewall (WAF)

all

Configure WAF to block XSS payloads in URL parameters

🧯 If You Can't Patch

  • Implement Content Security Policy (CSP) headers to restrict script execution
  • Use input validation filters to sanitize all user-supplied data before processing

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for 'WooCommerce Sales MIS Report' version 4.0.3 or earlier

Check Version:

wp plugin get woocommerce-mis-report --field=version

Verify Fix Applied:

Verify plugin version is 4.0.4 or later in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual long URL parameters containing script tags or JavaScript code
  • Multiple failed XSS attempts in web server logs

Network Indicators:

  • HTTP requests with suspicious parameters containing <script>, javascript:, or encoded payloads

SIEM Query:

web_server_logs WHERE url CONTAINS "<script>" OR url CONTAINS "javascript:" AND referrer LIKE "%woocommerce-mis-report%"

🔗 References

📤 Share & Export