CVE-2025-54034

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 Tribulant Software Newsletters WordPress plugin users running versions up to 4.10, potentially leading to sensitive information disclosure or code execution.

💻 Affected Systems

Products:
  • Tribulant Software Newsletters WordPress Plugin
Versions: n/a through 4.10
Operating Systems: All operating systems running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Affects both free (Newsletters Lite) and premium versions. Requires WordPress installation with the vulnerable plugin enabled.

⚠️ 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 disclosure (including configuration files with credentials), and complete website takeover.

🟠

Likely Case

Sensitive information disclosure (database credentials, configuration files), limited file system access, and potential privilege escalation through reading WordPress configuration files.

🟢

If Mitigated

Limited impact if proper file permissions are set, web server runs with minimal privileges, and sensitive files are stored outside web root.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires no authentication and uses simple HTTP requests with path traversal payloads. Public exploit details available in security advisories.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.10.1

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/newsletters-lite/vulnerability/wordpress-newsletters-4-10-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 'Newsletters' or 'Newsletters Lite'. 4. Click 'Update Now' if update available. 5. Alternatively, download version 4.10.1+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the Newsletters plugin until patched

wp plugin deactivate newsletters-lite
wp plugin deactivate newsletters

Restrict PHP include paths

linux

Configure PHP to restrict include paths to specific directories

php_admin_value open_basedir "/var/www/html:/tmp"

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block requests containing path traversal sequences (../, ..\, etc.)
  • Restrict file system permissions and run web server with minimal privileges

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Installed Plugins for Newsletters version. If version is 4.10 or lower, system is vulnerable.

Check Version:

wp plugin get newsletters-lite --field=version || wp plugin get newsletters --field=version

Verify Fix Applied:

Verify plugin version is 4.10.1 or higher in WordPress admin panel. Test with controlled LFI payloads to confirm patched behavior.

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests containing '../' or '..\' patterns in parameters
  • Multiple 200/500 responses to unusual file paths
  • Requests to wp-content/plugins/newsletters/ with unusual parameters

Network Indicators:

  • Unusual file path requests to newsletter plugin endpoints
  • Patterns of directory traversal attempts in HTTP traffic

SIEM Query:

source="web_logs" AND (uri="*newsletters*" AND (param="*../*" OR param="*..\\*"))

🔗 References

📤 Share & Export