CVE-2025-14129

6.1 MEDIUM

📋 TL;DR

The Like DisLike Voting WordPress plugin contains a reflected cross-site scripting (XSS) vulnerability that allows unauthenticated attackers to inject malicious scripts via crafted URLs. When users click on malicious links, attackers can steal session cookies, redirect users, or perform actions on their behalf. All WordPress sites using this plugin version 1.0.1 or earlier are affected.

💻 Affected Systems

Products:
  • WordPress Like DisLike Voting Plugin
Versions: All versions up to and including 1.0.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Vulnerability exists in default plugin configuration; no special configuration required for exploitation.

⚠️ 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 steal administrator session cookies, gain administrative access to WordPress, install backdoors, deface websites, or compromise user data.

🟠

Likely Case

Attackers steal user session cookies, redirect users to phishing sites, or perform limited actions within the user's current session.

🟢

If Mitigated

Attack limited to non-sensitive actions if users have minimal privileges and proper security headers are configured.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires user interaction (clicking malicious link) but is technically simple to execute.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.0.2 or later

Vendor Advisory: https://wordpress.org/plugins/like-dislike-voting/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Like DisLike Voting' plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete plugin immediately.

🔧 Temporary Workarounds

Disable Plugin

all

Deactivate and remove the vulnerable plugin from WordPress

wp plugin deactivate like-dislike-voting
wp plugin delete like-dislike-voting

Web Application Firewall Rules

all

Configure WAF to block requests containing malicious script patterns in PHP_SELF parameter

🧯 If You Can't Patch

  • Implement Content Security Policy (CSP) headers to restrict script execution
  • Use web application firewall to filter malicious requests targeting the vulnerable endpoint

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel → Plugins → Installed Plugins for 'Like DisLike Voting' plugin version 1.0.1 or earlier

Check Version:

wp plugin get like-dislike-voting --field=version

Verify Fix Applied:

Verify plugin version is 1.0.2 or later in WordPress admin panel, or confirm plugin is removed from installed plugins list

📡 Detection & Monitoring

Log Indicators:

  • HTTP requests containing script tags or JavaScript in PHP_SELF parameter
  • Unusual GET requests to plugin endpoints with encoded payloads

Network Indicators:

  • Malicious URLs containing script injections being shared
  • Traffic patterns showing users being redirected after visiting specific URLs

SIEM Query:

web_access_logs WHERE url CONTAINS 'like-dislike-voting' AND (url CONTAINS '<script' OR url CONTAINS 'javascript:' OR url CONTAINS 'onload=' OR url CONTAINS 'onerror=')

🔗 References

📤 Share & Export