CVE-2025-3438

6.5 MEDIUM

📋 TL;DR

The MStore API WordPress plugin allows unauthenticated attackers to register accounts with 'wcfm_vendor' privileges when the WCFM Marketplace plugin is active. This enables limited privilege escalation to vendor-level access without authentication. WordPress sites using MStore API up to version 4.17.4 with WCFM Marketplace installed are affected.

💻 Affected Systems

Products:
  • MStore API – Create Native Android & iOS Apps On The Cloud WordPress plugin
  • WCFM Marketplace – Multivendor Marketplace for WooCommerce WordPress plugin
Versions: MStore API: All versions up to and including 4.17.4
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires both MStore API plugin and WCFM Marketplace plugin to be installed and active. Partial patch in 4.17.3, full fix in 4.17.5.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers gain vendor-level access to create/manage products, process orders, and potentially access sensitive customer data in the WooCommerce marketplace.

🟠

Likely Case

Unauthenticated attackers create vendor accounts to list fraudulent products, manipulate marketplace content, or conduct spam/scam operations.

🟢

If Mitigated

Attackers can only create vendor accounts but cannot access admin functions or core WordPress settings.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitation requires sending crafted registration requests to the vulnerable API endpoint. No authentication needed.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.17.5

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3279132/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'MStore API' plugin. 4. Click 'Update Now' if update available. 5. Verify version is 4.17.5 or higher.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable MStore API plugin until patched

wp plugin deactivate mstore-api

Restrict registration endpoint

linux

Block access to the vulnerable API registration endpoint via web server or WAF

# Apache: RewriteRule ^/wp-json/flutter-user/register - [F,L]
# Nginx: location ~* /wp-json/flutter-user/register { deny all; }

🧯 If You Can't Patch

  • Disable user registration functionality in WordPress settings
  • Implement Web Application Firewall (WAF) rules to block suspicious registration attempts

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → MStore API version. If version ≤ 4.17.4 and WCFM Marketplace is active, system is vulnerable.

Check Version:

wp plugin get mstore-api --field=version

Verify Fix Applied:

After updating, test registration endpoint with vendor role attempt. Should receive error or default subscriber role.

📡 Detection & Monitoring

Log Indicators:

  • Multiple user registrations with 'wcfm_vendor' role
  • Unusual registration attempts from single IPs
  • POST requests to /wp-json/flutter-user/register endpoint

Network Indicators:

  • HTTP POST to registration endpoint with role parameter
  • Unusual traffic patterns to user registration API

SIEM Query:

source="wordpress" AND (uri_path="/wp-json/flutter-user/register" OR message="*wcfm_vendor*role*")

🔗 References

📤 Share & Export