CVE-2025-30845

7.5 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP's include/require statements. It affects WordPress sites using The Pack Elementor addons plugin versions up to 2.1.1, potentially leading to information disclosure or code execution.

💻 Affected Systems

Products:
  • The Pack Elementor addons for WordPress
Versions: n/a through 2.1.1
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with Elementor and The Pack addon installed. PHP configuration with allow_url_include disabled (default) still vulnerable to local file inclusion.

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

Full server compromise through local file inclusion leading to remote code execution, sensitive file access (like /etc/passwd, database credentials), and complete site takeover.

🟠

Likely Case

Information disclosure of sensitive server files, configuration files, or source code through directory traversal.

🟢

If Mitigated

Limited impact if file permissions are restrictive and web server runs with minimal privileges, potentially only allowing read access to non-sensitive files.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires finding vulnerable endpoints and understanding the plugin's file inclusion patterns. No public exploit code available at time of analysis.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 2.1.1

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/the-pack-addon/vulnerability/wordpress-the-pack-elementor-addons-plugin-2-1-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 'The Pack Elementor addons'. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and remove plugin until patched version is released.

🔧 Temporary Workarounds

Disable vulnerable plugin

WordPress

Temporarily deactivate The Pack Elementor addons plugin until patched version is available

wp plugin deactivate the-pack-addon

Restrict file access

all

Implement web application firewall rules to block requests containing directory traversal patterns

🧯 If You Can't Patch

  • Implement strict file permission controls on web server directories
  • Deploy web application firewall with LFI protection rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → The Pack Elementor addons → Version number. If version is 2.1.1 or earlier, system is vulnerable.

Check Version:

wp plugin get the-pack-addon --field=version

Verify Fix Applied:

Verify plugin version is higher than 2.1.1 in WordPress admin panel. Test vulnerable endpoints if known.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file path patterns in access logs (e.g., ../, ..\, %2e%2e%2f)
  • Multiple failed attempts to access non-existent plugin files
  • Requests to plugin endpoints with file path parameters

Network Indicators:

  • HTTP requests containing directory traversal sequences in parameters
  • Requests to plugin-specific endpoints with file inclusion patterns

SIEM Query:

source="web_access_logs" AND (uri="*../*" OR uri="*..\\*" OR uri="*%2e%2e%2f*") AND uri="*/the-pack-addon/*"

🔗 References

📤 Share & Export