CVE-2024-6500
📋 TL;DR
This vulnerability allows unauthenticated attackers to read and delete arbitrary files on WordPress sites using vulnerable InPost plugins. On Windows servers, attackers can access any file on the system, while on Linux they're limited to files within the WordPress installation. All sites using affected plugin versions are at risk.
💻 Affected Systems
- InPost for WooCommerce WordPress plugin
- InPost PL 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 server compromise on Windows systems via arbitrary file deletion/reading, potentially leading to data destruction, credential theft, and full system takeover.
Likely Case
Unauthorized access to sensitive WordPress files (config, databases), deletion of critical site files causing service disruption, and potential privilege escalation.
If Mitigated
Limited impact if proper file permissions restrict access, but still exposes WordPress configuration and data.
🎯 Exploit Status
Missing capability check in parse_request function makes exploitation straightforward for unauthenticated attackers.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: InPost for WooCommerce: >1.4.0; InPost PL: >1.4.4
Vendor Advisory: https://plugins.trac.wordpress.org/browser/inpost-for-woocommerce/trunk
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins. 3. Update InPost for WooCommerce to version >1.4.0 or InPost PL to >1.4.4. 4. Verify update completed successfully.
🔧 Temporary Workarounds
Disable vulnerable plugins
allTemporarily disable InPost plugins until patched
wp plugin deactivate inpost-for-woocommerce
wp plugin deactivate inpost-pl
Restrict file permissions
linuxSet strict file permissions on WordPress directories
chmod 644 wp-config.php
chmod 755 wp-content
find /var/www/html -type f -exec chmod 644 {} \;
find /var/www/html -type d -exec chmod 755 {} \;
🧯 If You Can't Patch
- Immediately disable both InPost plugins via WordPress admin or command line
- Implement web application firewall rules to block requests to vulnerable plugin endpoints
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin plugins page for InPost plugin versions: InPost for WooCommerce ≤1.4.0 or InPost PL ≤1.4.4
Check Version:
wp plugin list --name=inpost --field=version
Verify Fix Applied:
Confirm plugin versions show >1.4.0 for InPost for WooCommerce or >1.4.4 for InPost PL
📡 Detection & Monitoring
Log Indicators:
- Unusual file access patterns in WordPress logs
- HTTP requests to InPost plugin endpoints from unauthenticated users
- File deletion events in system logs
Network Indicators:
- HTTP requests containing 'parse_request' or InPost-specific parameters
- Unusual outbound traffic following file access attempts
SIEM Query:
source="wordpress.log" AND ("inpost" OR "easypack") AND ("parse_request" OR "file" OR "delete")
🔗 References
- https://plugins.trac.wordpress.org/browser/inpost-for-woocommerce/trunk/src/InspireLabs/WoocommerceInpost/EasyPack_Helper.php#L267
- https://plugins.trac.wordpress.org/browser/inpost-for-woocommerce/trunk/src/InspireLabs/WoocommerceInpost/EasyPack_Helper.php#L75
- https://plugins.trac.wordpress.org/browser/woo-inpost/trunk/classes/class-helper.php#L140
- https://plugins.trac.wordpress.org/browser/woo-inpost/trunk/classes/class-helper.php#L216
- https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&new=3115602%40inpost-for-woocommerce%2Ftrunk&old=3110579%40inpost-for-woocommerce%2Ftrunk&sfp_email=&sfph_mail=
- https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&new=3125034%40woo-inpost%2Ftrunk&old=2886304%40woo-inpost%2Ftrunk&sfp_email=&sfph_mail=
- https://www.wordfence.com/threat-intel/vulnerabilities/id/7b57e750-71ec-4c52-999b-6c14a78c3bff?source=cve