CVE-2024-52447
📋 TL;DR
This path traversal vulnerability in the WordPress 'Contact Page With Google Map' plugin allows attackers to delete arbitrary files on the server using specially crafted directory traversal sequences. It affects all WordPress sites running this plugin from unknown versions through 1.6.1.
💻 Affected Systems
- Contact Page With Google Map WordPress 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
Complete system compromise via deletion of critical system files, leading to service disruption, data loss, or privilege escalation.
Likely Case
Website defacement, data deletion, or plugin/theme removal causing site functionality loss.
If Mitigated
Limited impact if file permissions are restrictive and web server runs with minimal privileges.
🎯 Exploit Status
Exploitation requires sending specially crafted HTTP requests with directory traversal sequences like '.../...//' to bypass filters.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 1.6.2 or later
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Contact Page With Google Map'. 4. Click 'Update Now' if available. 5. If no update appears, manually download version 1.6.2+ from WordPress.org and replace plugin files.
🔧 Temporary Workarounds
Disable Plugin
allTemporarily deactivate the vulnerable plugin until patched.
wp plugin deactivate contact-page-with-google-map
Web Application Firewall Rule
allBlock requests containing directory traversal patterns.
Add WAF rule to block requests with patterns like '.../...//', '../', '..\' in URL parameters
🧯 If You Can't Patch
- Remove plugin entirely and use alternative contact form solution
- Implement strict file permissions (755 for directories, 644 for files) and run web server with minimal privileges
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → Installed Plugins for 'Contact Page With Google Map' version ≤1.6.1.
Check Version:
wp plugin get contact-page-with-google-map --field=version
Verify Fix Applied:
Confirm plugin version is 1.6.2 or higher in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- HTTP requests with '.../...//' patterns in URL parameters
- File deletion errors in web server logs
- Unauthorized file access attempts
Network Indicators:
- HTTP POST/GET requests to plugin endpoints with traversal sequences
- Unusual file deletion patterns
SIEM Query:
web.url:*.../...//* OR web.url:*../* OR web.url:*..\\*