CVE-2025-3234

7.2 HIGH

📋 TL;DR

The File Manager Pro – Filester WordPress plugin allows authenticated attackers with Administrator-level access to upload arbitrary files due to missing file type validation. This vulnerability can lead to remote code execution on affected WordPress sites. Sites that extend file manager privileges to lower-level users face increased risk.

💻 Affected Systems

Products:
  • File Manager Pro – Filester WordPress plugin
Versions: All versions up to and including 1.8.8
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Risk increases significantly if administrators extend file manager privileges to lower-level users like subscribers.

⚠️ 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

Full server compromise via remote code execution, leading to data theft, malware deployment, or complete site takeover.

🟠

Likely Case

Unauthorized file upload leading to webshell installation, backdoor persistence, or site defacement.

🟢

If Mitigated

Limited impact if proper access controls and file validation are implemented.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Requires authenticated Administrator access, but exploitation is straightforward once access is obtained.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.8.9 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&new=3310066%40filester%2Ftrunk&old=3294389%40filester%2Ftrunk&sfp_email=&sfph_mail=

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'File Manager Pro – Filester' and click 'Update Now'. 4. Verify version is 1.8.9 or higher.

🔧 Temporary Workarounds

Disable plugin

all

Temporarily deactivate the vulnerable plugin until patched

Restrict file uploads

linux

Implement server-side file type validation via web application firewall or .htaccess rules

# Example .htaccess rule to block certain file types
<FilesMatch "\.(php|phtml|php3|php4|php5|php7|phps|php-s|pht|phar|shtml|htaccess|sh|cgi|pl|py|rb|js|jsp|asp|aspx)">
    Order Allow,Deny
    Deny from all
</FilesMatch>

🧯 If You Can't Patch

  • Remove Administrator access from untrusted users and audit all admin accounts
  • Implement strict file upload validation at the application or server level

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → File Manager Pro – Filester → Version. If version is 1.8.8 or lower, you are vulnerable.

Check Version:

wp plugin list --name='File Manager Pro – Filester' --field=version

Verify Fix Applied:

Confirm plugin version is 1.8.9 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file uploads to wp-content/plugins/filester/ directory
  • POST requests to filester file upload endpoints with suspicious file extensions
  • Administrator account logins from unusual locations

Network Indicators:

  • HTTP requests uploading files with extensions like .php, .phtml, .phar to filester endpoints
  • Unusual outbound connections from web server after file uploads

SIEM Query:

source="web_logs" AND (uri_path="/wp-content/plugins/filester/" AND (method="POST" OR file_extension IN ("php", "phtml", "phar", "jsp", "asp")))

🔗 References

📤 Share & Export