CVE-2025-32289

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 Yozi theme from ApusTheme. Attackers can potentially read sensitive files or execute code depending on server configuration.

💻 Affected Systems

Products:
  • ApusTheme Yozi WordPress Theme
Versions: n/a through 2.0.52
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with Yozi theme installed and active.

⚠️ 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 theft, and website defacement.

🟠

Likely Case

Local file inclusion allowing reading of sensitive files like configuration files, logs, or source code.

🟢

If Mitigated

Limited impact if file inclusion is restricted by PHP configuration or web server permissions.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation is straightforward with publicly available proof-of-concept code.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.0.53 or later

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

Restart Required: No

Instructions:

1. Update Yozi theme to version 2.0.53 or later via WordPress admin panel. 2. Verify theme update completed successfully. 3. Clear any caching plugins or CDN caches.

🔧 Temporary Workarounds

Disable vulnerable theme

all

Temporarily switch to default WordPress theme until patch can be applied

Restrict PHP file inclusion

linux

Configure PHP to disable allow_url_include and restrict open_basedir

php.ini: allow_url_include = Off
php.ini: open_basedir = /var/www/html

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict file system permissions to minimum required for web server user

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Appearance > Themes for Yozi theme version

Check Version:

wp theme list --field=name,version --status=active

Verify Fix Applied:

Confirm Yozi theme version is 2.0.53 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • Multiple requests to theme files with path traversal patterns

Network Indicators:

  • HTTP requests containing '../' or similar path traversal sequences in theme-related URLs

SIEM Query:

source="web_access" AND (uri="*../*" OR uri="*/wp-content/themes/yozi/*") AND (status=200 OR status=500)

🔗 References

📤 Share & Export