CVE-2025-32294

8.1 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper input validation in the Oxpitan WordPress theme. It affects all WordPress sites using Oxpitan theme versions up to 1.3.1. Attackers can potentially read sensitive files or execute code.

💻 Affected Systems

Products:
  • WordPress Oxpitan Theme
Versions: n/a through 1.3.1
Operating Systems: All OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Oxpitan theme active. PHP configuration with allow_url_include disabled does not prevent 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, data exfiltration, and complete system takeover.

🟠

Likely Case

Sensitive file disclosure (configuration files, database credentials, user data) and limited code execution within web server context.

🟢

If Mitigated

No impact if proper input validation and file inclusion restrictions are enforced at web server and application levels.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Simple HTTP requests with crafted parameters can trigger the vulnerability. Public exploit details available in security advisories.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.3.2 or later

Vendor Advisory: https://patchstack.com/database/wordpress/theme/oxpitan/vulnerability/wordpress-oxpitan-1-3-1-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Appearance > Themes. 3. Check for Oxpitan theme update notification. 4. Update to version 1.3.2 or later. 5. If no update available, remove the theme and replace with secure alternative.

🔧 Temporary Workarounds

Disable vulnerable theme

all

Temporarily switch to default WordPress theme to remove attack surface

wp theme activate twentytwentyfour
wp theme deactivate oxpitan

Web server file restriction

linux

Configure web server to restrict file inclusion to specific directories

# Apache: Set open_basedir in .htaccess or php.ini
# Nginx: Set open_basedir in php-fpm configuration

🧯 If You Can't Patch

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

🔍 How to Verify

Check if Vulnerable:

Check WordPress theme version in wp-content/themes/oxpitan/style.css or via WordPress admin panel

Check Version:

wp theme list --field=name,status,version | grep oxpitan

Verify Fix Applied:

Confirm Oxpitan theme version is 1.3.2 or later in theme details

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP error logs
  • HTTP requests with suspicious include/require parameters
  • Multiple 404 errors for non-existent theme files

Network Indicators:

  • HTTP requests containing '../' patterns or absolute file paths
  • Unusual file extensions in URL parameters

SIEM Query:

source="web_logs" AND (url="*oxpitan*" AND (url="*../*" OR url="*/etc/*" OR url="*/proc/*"))

🔗 References

📤 Share & Export