CVE-2024-10516

8.1 HIGH

📋 TL;DR

The Swift Performance Lite WordPress plugin contains a Local File Inclusion vulnerability in its 'ajaxify' function, allowing unauthenticated attackers to include and execute arbitrary PHP files on the server. This can lead to remote code execution, data theft, and access control bypass. All WordPress sites using Swift Performance Lite version 2.3.7.1 or earlier are affected.

💻 Affected Systems

Products:
  • Swift Performance Lite WordPress Plugin
Versions: All versions up to and including 2.3.7.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Swift Performance Lite plugin active

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

Complete server compromise leading to data exfiltration, ransomware deployment, or persistent backdoor installation

🟠

Likely Case

Unauthenticated attackers executing arbitrary PHP code to deface websites, steal sensitive data, or install cryptocurrency miners

🟢

If Mitigated

Limited impact if file uploads are restricted and server permissions are properly configured

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation is straightforward via HTTP requests to vulnerable endpoints

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.3.7.2

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3201933/

Restart Required: No

Instructions:

1. Log into WordPress admin panel
2. Navigate to Plugins → Installed Plugins
3. Find Swift Performance Lite
4. Click 'Update Now' if available
5. If not, download version 2.3.7.2+ from WordPress repository
6. Deactivate old version
7. Upload and activate new version

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate Swift Performance Lite plugin until patched

wp plugin deactivate swift-performance-lite

Restrict file uploads

linux

Configure web server to block PHP file uploads in upload directories

location ~ \.php$ { deny all; }

🧯 If You Can't Patch

  • Implement Web Application Firewall (WAF) rules to block requests containing file inclusion patterns
  • Restrict network access to WordPress admin interface and implement IP whitelisting

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Swift Performance Lite version number

Check Version:

wp plugin get swift-performance-lite --field=version

Verify Fix Applied:

Verify plugin version is 2.3.7.2 or higher in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests to /wp-admin/admin-ajax.php with 'action=swift_performance_ajaxify' and file inclusion parameters
  • Unusual PHP file execution in upload directories

Network Indicators:

  • POST requests to admin-ajax.php with file path parameters
  • Unexpected outbound connections from web server

SIEM Query:

source="web_access.log" AND uri="/wp-admin/admin-ajax.php" AND query="*action=swift_performance_ajaxify*" AND (query="*file=*" OR query="*path=*")

🔗 References

📤 Share & Export