CVE-2025-68067

7.5 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through improper filename control in PHP's include/require statements. It affects WordPress sites using the Stockholm Core plugin, potentially leading to sensitive file disclosure or code execution. All sites running Stockholm Core version 2.4.6 or earlier are vulnerable.

💻 Affected Systems

Products:
  • Select-Themes Stockholm Core
Versions: <= 2.4.6
Operating Systems: All operating systems running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Stockholm Core plugin 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 theft, and complete site takeover.

🟠

Likely Case

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

🟢

If Mitigated

Limited impact due to proper file permissions, web application firewalls, and restricted PHP functions.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires knowledge of file paths but is straightforward once identified. Public proof-of-concept exists in security advisories.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.4.7 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/stockholm-core/vulnerability/wordpress-stockholm-core-plugin-2-4-6-local-file-inclusion-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Stockholm Core plugin. 4. Click 'Update Now' if available. 5. Alternatively, download version 2.4.7+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable Stockholm Core Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate stockholm-core

Web Application Firewall Rule

all

Block requests containing local file inclusion patterns

Add WAF rule to block requests with patterns like '../../', 'php://', 'file://' in parameters

🧯 If You Can't Patch

  • Implement strict file permissions (config files should be 600, web directories 755)
  • Deploy web application firewall with LFI protection rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Stockholm Core version <= 2.4.6

Check Version:

wp plugin get stockholm-core --field=version

Verify Fix Applied:

Verify Stockholm Core plugin version is 2.4.7 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests with parameters containing '../../', 'file://', or unusual file paths
  • PHP warnings about failed file inclusions

Network Indicators:

  • Unusual GET/POST requests to WordPress admin-ajax.php or similar endpoints with file path parameters

SIEM Query:

source="web_logs" AND (uri="*admin-ajax.php*" OR uri="*wp-admin*" OR uri="*wp-json*") AND (param="*../../*" OR param="*file://*" OR param="*php://*")

🔗 References

📤 Share & Export