CVE-2025-32309

8.1 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP include/require statements. It affects WordPress sites using the Healsoul theme from unknown versions through 2.0.2, potentially leading to sensitive file disclosure or code execution.

💻 Affected Systems

Products:
  • WordPress Healsoul Theme
Versions: n/a through 2.0.2
Operating Systems: All platforms running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with Healsoul theme installed and activated.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Remote code execution leading to complete system compromise, data theft, and website defacement.

🟠

Likely Case

Sensitive file disclosure including configuration files, database credentials, and user data.

🟢

If Mitigated

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

🌐 Internet-Facing: HIGH - WordPress themes are typically internet-facing and this vulnerability requires no authentication.
🏢 Internal Only: MEDIUM - Could be exploited by internal users or through other compromised systems.

🎯 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: 2.0.3 or later

Vendor Advisory: https://patchstack.com/database/wordpress/theme/healsoul/vulnerability/wordpress-healsoul-2-0-2-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Update Healsoul theme to version 2.0.3 or later via WordPress admin panel. 2. Verify theme files are properly updated. 3. Clear any caching mechanisms.

🔧 Temporary Workarounds

Disable vulnerable theme

all

Switch to a different WordPress theme temporarily

wp theme activate twentytwentyfour
wp theme deactivate healsoul

Restrict file access

linux

Configure web server to restrict access to sensitive directories

# In Apache .htaccess: Options -Indexes
# In nginx: location ~ /\. { deny all; }

🧯 If You Can't Patch

  • Remove the Healsoul theme completely from the WordPress installation.
  • Implement web application firewall rules to block LFI attack patterns.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel for Healsoul theme version 2.0.2 or earlier.

Check Version:

wp theme list --name=healsoul --field=version

Verify Fix Applied:

Confirm Healsoul theme version is 2.0.3 or later in WordPress admin.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file path patterns in access logs
  • Multiple requests to theme files with path traversal parameters

Network Indicators:

  • HTTP requests containing '../' or similar path traversal sequences
  • Requests to theme files with unusual parameters

SIEM Query:

source="web_access.log" AND (uri="*healsoul*" AND (uri="*../*" OR uri="*..\\*" OR uri="*php://*"))

🔗 References

📤 Share & Export