CVE-2024-54270

8.1 HIGH

📋 TL;DR

This CVE describes a PHP Local File Inclusion vulnerability in the Axeptio WordPress plugin that allows attackers to include arbitrary local files via improper filename control in include/require statements. Attackers can potentially read sensitive files or execute code on affected WordPress sites. All WordPress installations using Axeptio plugin versions up to 2.5.3 are affected.

💻 Affected Systems

Products:
  • Axeptio WordPress Plugin
Versions: n/a through 2.5.3
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Axeptio plugin enabled. No special configuration needed.

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

Remote code execution leading to complete server compromise, data exfiltration, and website defacement.

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials) and limited code execution within web server context.

🟢

If Mitigated

Unauthorized file reads limited to web-accessible directories if proper file permissions are configured.

🌐 Internet-Facing: HIGH - WordPress sites are typically internet-facing and vulnerable to unauthenticated attacks.
🏢 Internal Only: MEDIUM - Internal WordPress sites could still be exploited by internal attackers or through compromised accounts.

🎯 Exploit Status

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

Simple path traversal or file inclusion payloads can exploit this vulnerability. Public exploit details available in security advisories.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.5.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/axeptio-sdk-integration/vulnerability/wordpress-axeptio-plugin-2-5-1-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Axeptio plugin and click 'Update Now'. 4. Verify version is 2.5.4 or higher.

🔧 Temporary Workarounds

Disable Axeptio Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate axeptio-sdk-integration

Restrict PHP File Functions

linux

Add PHP configuration to restrict include/require functions

php_admin_value open_basedir /var/www/html
php_admin_value allow_url_include Off

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict file permissions and implement strict directory traversal protections

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Axeptio version. If version is 2.5.3 or lower, system is vulnerable.

Check Version:

wp plugin get axeptio-sdk-integration --field=version

Verify Fix Applied:

Verify Axeptio plugin version is 2.5.4 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • Multiple include/require failures with traversal patterns
  • Access to sensitive files like wp-config.php

Network Indicators:

  • HTTP requests with file inclusion parameters
  • Requests containing '../' patterns in URLs

SIEM Query:

source="web_access.log" AND ("..\/" OR "%2e%2e%2f" OR "include.php" OR "require.php") AND uri="*axeptio*"

🔗 References

📤 Share & Export