CVE-2025-68563

9.8 CRITICAL

📋 TL;DR

This CVE describes a PHP Local File Inclusion vulnerability in the WordPress Subscribe to Unlock Lite plugin. Attackers can include arbitrary local files on the server, potentially leading to remote code execution. All WordPress sites running vulnerable versions of this plugin are affected.

💻 Affected Systems

Products:
  • Subscribe to Unlock Lite WordPress Plugin
Versions: n/a through <= 1.3.0
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with vulnerable plugin version.

⚠️ 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 via remote code execution, data exfiltration, and complete site takeover.

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials), limited code execution, and privilege escalation.

🟢

If Mitigated

Limited impact if file permissions are restrictive and web server runs with minimal privileges.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple HTTP requests can trigger the vulnerability without authentication.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: >1.3.0

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/subscribe-to-unlock-lite/vulnerability/wordpress-subscribe-to-unlock-lite-plugin-1-3-0-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins. 3. Update Subscribe to Unlock Lite to latest version. 4. Verify update completed successfully.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the Subscribe to Unlock Lite plugin until patched.

wp plugin deactivate subscribe-to-unlock-lite

Restrict file inclusion paths

linux

Configure PHP to restrict file inclusion to specific directories.

php_admin_value open_basedir /var/www/html

🧯 If You Can't Patch

  • Remove the Subscribe to Unlock Lite plugin completely from the WordPress installation.
  • Implement web application firewall rules to block requests containing file inclusion patterns.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Subscribe to Unlock Lite version. If version <=1.3.0, vulnerable.

Check Version:

wp plugin get subscribe-to-unlock-lite --field=version

Verify Fix Applied:

Verify plugin version is >1.3.0 in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests with file inclusion parameters like ?file=, ?page=, ?include=
  • PHP error logs showing file inclusion warnings

Network Indicators:

  • HTTP GET requests with suspicious file paths in parameters
  • Unusual file access patterns from web server

SIEM Query:

source="web_access.log" AND (uri="*file=*" OR uri="*page=*" OR uri="*include=*") AND (uri="*../*" OR uri="*/etc/*" OR uri="*/proc/*")

🔗 References

📤 Share & Export