CVE-2025-10406

5.5 MEDIUM

📋 TL;DR

This vulnerability in the BlindMatrix e-Commerce WordPress plugin allows authenticated users (including contributors) to perform Local File Inclusion (LFI) attacks by manipulating shortcode attributes. Attackers can read sensitive files on the server, potentially exposing configuration files, credentials, or other sensitive data. WordPress sites using vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • BlindMatrix e-Commerce WordPress Plugin
Versions: All versions before 3.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin enabled. Any authenticated user (including contributors) can exploit this vulnerability.

⚠️ 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 read sensitive server files like wp-config.php containing database credentials, potentially leading to full site compromise and data exfiltration.

🟠

Likely Case

Authenticated users with contributor-level access could read sensitive configuration files, potentially escalating privileges or accessing other sensitive data.

🟢

If Mitigated

With proper access controls and monitoring, impact would be limited to file reads within web-accessible directories.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires authenticated access to WordPress. The vulnerability is in shortcode attribute handling that leads to path traversal.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.1

Vendor Advisory: https://wpscan.com/vulnerability/d8bdd2d4-c03c-4e7f-9c8a-6efc010311b6/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find BlindMatrix e-Commerce plugin. 4. Click 'Update Now' if update is available. 5. Alternatively, download version 3.1+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Remove Plugin

WordPress

Temporarily disable or remove the vulnerable plugin until patched

wp plugin deactivate blindmatrix-ecommerce
wp plugin delete blindmatrix-ecommerce

Restrict User Roles

WordPress

Temporarily restrict contributor-level access or implement additional authentication controls

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block LFI patterns and path traversal attempts
  • Enable strict file permissions and disable PHP execution in upload directories

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for BlindMatrix e-Commerce version

Check Version:

wp plugin get blindmatrix-ecommerce --field=version

Verify Fix Applied:

Verify plugin version is 3.1 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unusual file access patterns in web server logs
  • Multiple requests with path traversal patterns (../)
  • Requests to plugin files with manipulated parameters

Network Indicators:

  • HTTP requests containing path traversal sequences in shortcode parameters
  • Unusual file read attempts from authenticated users

SIEM Query:

source="web_server" AND (uri="*blindmatrix*" AND (param="*../*" OR param="*..\\*"))

🔗 References

📤 Share & Export