CVE-2025-30550

7.1 HIGH

📋 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

Products:
  • WPShop.ru CallPhone'r WordPress Plugin
Versions: n/a through 1.1.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with CallPhone'r plugin enabled. The plugin must be in use and accessible to authenticated users.

⚠️ 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

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.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

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

all

Add CSRF tokens to all plugin forms and validate them server-side.

Input Sanitization

all

Implement 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=*)

🔗 References

📤 Share & Export