CVE-2025-49367

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 Monyxi theme from AncoraThemes. Attackers can potentially read sensitive files or execute arbitrary code.

💻 Affected Systems

Products:
  • AncoraThemes Monyxi WordPress Theme
Versions: All versions up to and including 1.1.8
Operating Systems: Any OS running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Monyxi theme 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 configuration files (wp-config.php), database credentials, and other server files.

🟢

If Mitigated

Limited file access restricted by server permissions and PHP configuration.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires knowledge of vulnerable endpoints but is straightforward for attackers.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.1.8

Vendor Advisory: https://patchstack.com/database/Wordpress/Theme/monyxi/vulnerability/wordpress-monyxi-theme-1-1-8-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Update Monyxi theme to latest version. 2. If update not available, remove theme and replace with secure alternative. 3. Verify theme files are properly sanitized.

🔧 Temporary Workarounds

Disable vulnerable theme

all

Temporarily disable Monyxi theme until patched

wp theme deactivate monyxi

PHP configuration hardening

linux

Set open_basedir restriction and disable allow_url_include

open_basedir = /var/www/html
allow_url_include = Off

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block file inclusion patterns
  • Restrict file permissions and implement strict access controls on sensitive directories

🔍 How to Verify

Check if Vulnerable:

Check WordPress theme version in Appearance > Themes or via wp theme list command

Check Version:

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

Verify Fix Applied:

Verify theme version is greater than 1.1.8 and test vulnerable endpoints

📡 Detection & Monitoring

Log Indicators:

  • Unusual file include patterns in PHP error logs
  • Requests to theme files with file path parameters

Network Indicators:

  • HTTP requests containing file path traversal patterns to theme endpoints

SIEM Query:

source="web_access" AND (uri="*monyxi*" AND (param="*../*" OR param="*file=*"))

🔗 References

📤 Share & Export