CVE-2024-53779

7.1 HIGH

📋 TL;DR

This vulnerability in the Yahoo! WebPlayer WordPress plugin allows attackers to perform Cross-Site Request Forgery (CSRF) attacks that lead to Stored Cross-Site Scripting (XSS). Attackers can trick authenticated administrators into executing malicious actions that inject persistent scripts into websites. This affects all WordPress sites using Yahoo! WebPlayer versions up to 2.0.6.

💻 Affected Systems

Products:
  • Yahoo! WebPlayer WordPress Plugin
Versions: n/a through 2.0.6
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin enabled. Attack requires tricking authenticated admin 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

Complete site takeover through persistent XSS payloads that steal admin credentials, deface websites, or redirect visitors to malicious sites.

🟠

Likely Case

Attackers inject malicious JavaScript that steals session cookies, performs unauthorized actions, or displays unwanted content to visitors.

🟢

If Mitigated

Limited impact with proper CSRF tokens and Content Security Policy (CSP) headers in place.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitation requires social engineering to trick authenticated users. CSRF leads to stored XSS payload injection.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 2.0.6

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/yahoo-media-player/vulnerability/wordpress-yahoo-webplayer-plugin-2-0-6-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 Yahoo! WebPlayer. 4. Click 'Update Now' if available. 5. If no update available, deactivate and delete the plugin.

🔧 Temporary Workarounds

Implement CSRF Protection

all

Add CSRF tokens to all form submissions and state-changing operations in the plugin.

Content Security Policy

all

Implement strict CSP headers to prevent XSS execution even if payloads are injected.

🧯 If You Can't Patch

  • Immediately deactivate and remove the Yahoo! WebPlayer plugin from all WordPress installations.
  • Implement web application firewall (WAF) rules to block CSRF attempts and XSS payloads targeting this plugin.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Installed Plugins. Look for Yahoo! WebPlayer version 2.0.6 or earlier.

Check Version:

wp plugin list --name=yahoo-webplayer --field=version

Verify Fix Applied:

After update, verify plugin version is higher than 2.0.6. Test admin forms for presence of CSRF tokens.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to Yahoo! WebPlayer admin endpoints
  • Multiple failed CSRF token validations
  • JavaScript injection attempts in plugin-related fields

Network Indicators:

  • CSRF attack patterns with missing referrer headers
  • Malicious JavaScript payloads in HTTP requests

SIEM Query:

source="wordpress" AND (uri_path="*yahoo*" OR uri_path="*webplayer*") AND (http_method="POST" AND NOT referer="*wp-admin*")

🔗 References

📤 Share & Export