CVE-2025-23745
📋 TL;DR
This CSRF vulnerability in the WordPress Call me Now plugin allows attackers to trick authenticated administrators into executing malicious actions, leading to stored cross-site scripting (XSS). Attackers can inject persistent malicious scripts that execute in users' browsers when visiting affected pages. All WordPress sites using Call me Now plugin versions up to 1.0.5 are affected.
💻 Affected Systems
- WordPress Call me Now plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Attackers could inject malicious JavaScript that steals administrator credentials, redirects users to phishing sites, or performs unauthorized administrative actions on the WordPress site.
Likely Case
Attackers create fake forms or links that trick administrators into unknowingly injecting malicious scripts, leading to session hijacking or defacement of the website.
If Mitigated
With proper CSRF tokens and input validation, the attack chain is broken and no malicious scripts can be injected.
🎯 Exploit Status
Exploitation requires tricking an authenticated administrator into clicking a malicious link or visiting a crafted page. The stored XSS payload then affects all users visiting the compromised page.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 1.0.6 or later
Vendor Advisory: https://patchstack.com/database/wordpress/plugin/call-me-now/vulnerability/wordpress-call-me-now-plugin-1-0-5-csrf-to-stored-xss-vulnerability?_s_id=cve
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Call me Now' plugin. 4. Click 'Update Now' if update is available. 5. Alternatively, download version 1.0.6+ from WordPress repository and manually update.
🔧 Temporary Workarounds
Implement CSRF Protection
allAdd CSRF tokens to all plugin forms and validate them on submission
Input Sanitization
allImplement proper input validation and output encoding for all user-controllable data
🧯 If You Can't Patch
- Disable the Call me Now plugin immediately
- Implement web application firewall (WAF) rules to block CSRF attempts and XSS payloads
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → Installed Plugins for Call me Now version. If version is 1.0.5 or earlier, you are vulnerable.
Check Version:
wp plugin list --name='call-me-now' --field=version
Verify Fix Applied:
After updating, verify the plugin version shows 1.0.6 or later in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Unusual POST requests to plugin endpoints without referrer headers
- Multiple failed CSRF token validations
- Suspicious JavaScript injection in plugin settings
Network Indicators:
- Cross-origin requests to plugin admin endpoints
- Unexpected iframe or form submissions to vulnerable endpoints
SIEM Query:
source="wordpress.log" AND ("call-me-now" OR "call_me_now") AND ("csrf" OR "nonce" OR "referer")