CVE-2025-30550
📋 TL;DR
A Cross-Site Request Forgery (CSRF) vulnerability in the WPShop.ru CallPhone'r WordPress plugin allows attackers to perform unauthorized actions as authenticated users, leading to Stored Cross-Site Scripting (XSS). This affects WordPress sites using CallPhone'r plugin versions up to 1.1.1. Attackers can inject malicious scripts that execute when other users view affected pages.
💻 Affected Systems
- WPShop.ru CallPhone'r WordPress 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 persistent malicious scripts that steal session cookies, redirect users to phishing sites, or perform administrative actions on the WordPress site, potentially leading to complete site compromise.
Likely Case
Attackers inject malicious JavaScript that steals user session cookies or credentials when users visit compromised pages, leading to account takeover and unauthorized content modification.
If Mitigated
With proper CSRF tokens and input validation, the attack chain is broken, preventing unauthorized actions and script injection.
🎯 Exploit Status
Exploitation requires tricking an authenticated user into visiting a malicious page. The CSRF leads to stored XSS payload injection.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Version after 1.1.1
Vendor Advisory: https://patchstack.com/database/wordpress/plugin/callphoner/vulnerability/wordpress-callphone-r-plugin-1-1-1-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 'CallPhone'r' plugin. 4. Click 'Update Now' if update available. 5. If no update, deactivate and remove plugin, then find updated version from official repository.
🔧 Temporary Workarounds
Implement CSRF Protection
allAdd CSRF tokens to all plugin forms and validate them server-side.
Input Sanitization
allImplement strict input validation and output encoding for all user-controllable data.
🧯 If You Can't Patch
- Deactivate and remove the CallPhone'r plugin immediately
- Implement web application firewall (WAF) rules to block CSRF attempts and XSS payloads
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for CallPhone'r version. If version is 1.1.1 or earlier, you are vulnerable.
Check Version:
wp plugin list --name=callphoner --field=version
Verify Fix Applied:
After update, verify plugin version is higher than 1.1.1. Test forms for CSRF tokens and check that user input is properly sanitized.
📡 Detection & Monitoring
Log Indicators:
- Unusual POST requests to plugin endpoints without referrer headers
- JavaScript injection patterns in form submissions
Network Indicators:
- CSRF attack patterns with missing origin/referrer headers
- XSS payloads in HTTP requests
SIEM Query:
source="wordpress.log" AND ("callphoner" OR "callphone'r") AND (POST AND NOT referer=*)