CVE-2023-28408

9.8 CRITICAL

📋 TL;DR

A directory traversal vulnerability in MW WP Form plugin versions 4.4.2 and earlier allows unauthenticated remote attackers to access files outside the intended directory. This can lead to website alteration, denial-of-service, or sensitive information disclosure depending on configuration. All WordPress sites using vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • MW WP Form WordPress Plugin
Versions: 4.4.2 and earlier
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Vulnerability exists in default configuration; no special settings required for exploitation.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete website compromise including sensitive file access (database credentials, configuration files), website defacement, and persistent DoS condition.

🟠

Likely Case

Unauthorized file access leading to information disclosure of sensitive files, potential website modification, and temporary service disruption.

🟢

If Mitigated

Limited impact with proper file permissions and web server configurations restricting directory traversal attempts.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Directory traversal vulnerabilities are typically easy to exploit with publicly available tools and techniques.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.4.3 or later

Vendor Advisory: https://plugins.2inc.org/mw-wp-form/blog/2023/05/08/752/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find MW WP Form and click 'Update Now'. 4. Verify update to version 4.4.3 or higher.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the MW WP Form plugin until patched

wp plugin deactivate mw-wp-form

Web Application Firewall Rules

all

Implement WAF rules to block directory traversal patterns

Add rule: Block requests containing '../' or '..\' patterns

🧯 If You Can't Patch

  • Implement strict file permissions (644 for files, 755 for directories)
  • Deploy web application firewall with directory traversal protection

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > MW WP Form version number

Check Version:

wp plugin get mw-wp-form --field=version

Verify Fix Applied:

Verify plugin version is 4.4.3 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests containing '../' patterns to MW WP Form endpoints
  • Multiple 403/404 errors from traversal attempts
  • Unusual file access patterns in web server logs

Network Indicators:

  • HTTP requests with encoded directory traversal sequences (../, ..\)
  • Multiple failed file access attempts from single IP

SIEM Query:

source="web_server_logs" AND (uri="*../*" OR uri="*..\\*") AND uri="*/mw-wp-form/*"

🔗 References

📤 Share & Export