CVE-2025-15487
📋 TL;DR
The Code Explorer WordPress plugin up to version 1.4.6 contains a path traversal vulnerability in the 'file' parameter. This allows authenticated attackers with Administrator privileges to read arbitrary files on the server, potentially exposing sensitive information like configuration files, credentials, or source code. Only WordPress sites using vulnerable versions of this specific plugin are affected.
💻 Affected Systems
- WordPress Code Explorer plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Administrator-level attacker reads sensitive server files (e.g., wp-config.php, /etc/passwd, SSH keys), leading to full site compromise, credential theft, and lateral movement to other systems.
Likely Case
Malicious administrator or compromised admin account reads WordPress configuration files containing database credentials, potentially leading to database takeover.
If Mitigated
With proper access controls and monitoring, impact is limited to file disclosure within the web server's accessible directory structure.
🎯 Exploit Status
Exploitation requires authenticated Administrator access; path traversal via file parameter is straightforward once authenticated.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 1.4.7 or later
Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&new=3209207%40code-explorer%2Ftrunk&old=3199207%40code-explorer%2Ftrunk
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Code Explorer' and check if update is available. 4. Click 'Update Now' to upgrade to version 1.4.7+. 5. Verify update completes successfully.
🔧 Temporary Workarounds
Disable or remove plugin
allTemporarily disable or uninstall the Code Explorer plugin until patched.
wp plugin deactivate code-explorer
wp plugin delete code-explorer
Restrict admin access
allImplement strict access controls for Administrator accounts and monitor for suspicious activity.
🧯 If You Can't Patch
- Immediately disable the Code Explorer plugin via WordPress admin or command line.
- Implement web application firewall (WAF) rules to block path traversal patterns in requests to the plugin.
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → Installed Plugins for Code Explorer version ≤1.4.6.
Check Version:
wp plugin get code-explorer --field=version
Verify Fix Applied:
Confirm Code Explorer plugin version is 1.4.7 or higher in WordPress admin.
📡 Detection & Monitoring
Log Indicators:
- HTTP requests to /wp-admin/admin-ajax.php or plugin endpoints with 'file' parameter containing '../' sequences
- Unusual file read patterns from Administrator accounts
Network Indicators:
- Inbound requests with path traversal patterns to plugin-specific URLs
SIEM Query:
source="web_logs" AND uri_path="/wp-admin/admin-ajax.php" AND query="*file=*../*"