CVE-2025-39396

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 Crocoblock JetReviews plugin, potentially leading to sensitive information disclosure or code execution. All sites running JetReviews version 2.3.6 or earlier are vulnerable.

💻 Affected Systems

Products:
  • Crocoblock JetReviews WordPress Plugin
Versions: n/a through 2.3.6
Operating Systems: All operating systems running PHP
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with JetReviews plugin active. PHP configuration with allow_url_include disabled (default) still vulnerable to 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, sensitive file disclosure (config files, passwords), and complete site takeover.

🟠

Likely Case

Sensitive file disclosure (wp-config.php, database credentials), limited code execution through log poisoning, or reading of other local files containing sensitive information.

🟢

If Mitigated

Limited impact due to proper file permissions, web application firewalls blocking suspicious requests, and restricted PHP configuration settings.

🌐 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 with publicly available proof-of-concept code.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.3.7 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/jet-reviews/vulnerability/wordpress-jetreviews-plugin-2-3-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 JetReviews plugin. 4. Click 'Update Now' if update available. 5. Alternatively, download version 2.3.7+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable JetReviews plugin until patched version is available

wp plugin deactivate jet-reviews

Web Application Firewall rule

all

Block requests containing suspicious file inclusion patterns

ModSecurity rule: SecRule ARGS "\.\./" "id:1001,phase:2,deny,status:403,msg:'Path Traversal Attempt'

🧯 If You Can't Patch

  • Implement strict file permissions (644 for files, 755 for directories) to limit readable files
  • Deploy web application firewall with LFI detection rules and restrict access to admin interfaces

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > JetReviews for version number. If version is 2.3.6 or earlier, system is vulnerable.

Check Version:

wp plugin get jet-reviews --field=version

Verify Fix Applied:

Verify JetReviews plugin version is 2.3.7 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests with suspicious parameters containing '../', '..\', or file paths in query strings
  • Multiple 403/404 errors from same IP attempting file inclusion

Network Indicators:

  • Unusual GET/POST requests to JetReviews endpoints with file path parameters
  • Traffic spikes to /wp-content/plugins/jet-reviews/

SIEM Query:

source="web_logs" AND (uri="*jet-reviews*" AND (params="*../*" OR params="*..\\*" OR params="*/etc/*" OR params="*C:\\*"))

🔗 References

📤 Share & Export