CVE-2025-60196

7.5 HIGH

📋 TL;DR

This vulnerability allows attackers to include local files on the server through PHP's include/require statements, potentially leading to sensitive information disclosure or code execution. It affects WordPress installations running the Clearblue® Ovulation Calculator plugin. All users with vulnerable plugin versions are at risk.

💻 Affected Systems

Products:
  • Clearblue® Ovulation Calculator WordPress Plugin
Versions: All versions up to and including 1.2.4
Operating Systems: Any OS running PHP and WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin 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

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

🟢

If Mitigated

No impact if proper file permissions and web server configurations prevent unauthorized access.

🌐 Internet-Facing: HIGH - WordPress plugins are typically internet-facing and accessible to unauthenticated users.
🏢 Internal Only: MEDIUM - Internal systems may still be vulnerable if accessible via internal networks.

🎯 Exploit Status

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

Simple file inclusion attacks are well-documented and easy to automate.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.2.5 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/clearblue-ovulation-calculator/vulnerability/wordpress-clearblue-ovulation-calculator-plugin-1-2-4-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 Clearblue® Ovulation Calculator. 4. Click 'Update Now' if available. 5. Alternatively, download version 1.2.5+ from WordPress repository and replace plugin files.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched.

wp plugin deactivate clearblue-ovulation-calculator

Restrict File Access

all

Configure web server to block access to sensitive directories.

# In .htaccess for Apache:
<FilesMatch "\.(php|inc|conf|sql)$">
  Order Allow,Deny
  Deny from all
</FilesMatch>
# In nginx config:
location ~ \.(php|inc|conf|sql)$ {
  deny all;
}

🧯 If You Can't Patch

  • Remove the plugin completely from the WordPress installation.
  • Implement web application firewall (WAF) rules to block file inclusion patterns.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Clearblue® Ovulation Calculator version number.

Check Version:

wp plugin get clearblue-ovulation-calculator --field=version

Verify Fix Applied:

Confirm plugin version is 1.2.5 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual file paths in PHP include/require statements in web server logs
  • Multiple requests to plugin files with suspicious parameters

Network Indicators:

  • HTTP requests containing '../' or similar path traversal patterns to plugin endpoints

SIEM Query:

source="web_server_logs" AND (uri="*clearblue-ovulation-calculator*" AND (param="*../*" OR param="*php://*" OR param="*file=*"))

🔗 References

📤 Share & Export