CVE-2025-23892

6.5 MEDIUM

📋 TL;DR

This DOM-based Cross-Site Scripting (XSS) vulnerability in the WordPress Progress Tracker plugin allows attackers to inject malicious scripts into web pages viewed by other users. It affects all WordPress sites running Progress Tracker versions up to 0.9.3. Attackers can steal session cookies, redirect users, or perform actions on their behalf.

💻 Affected Systems

Products:
  • WordPress Progress Tracker plugin
Versions: n/a through 0.9.3
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with vulnerable plugin versions are affected regardless of configuration.

⚠️ 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 full control of WordPress site, install backdoors, deface website, or steal sensitive user data.

🟠

Likely Case

Attackers steal user session cookies, redirect users to malicious sites, or perform limited actions within the plugin's context.

🟢

If Mitigated

With proper Content Security Policy (CSP) headers and input validation, impact is limited to the specific vulnerable plugin component.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

DOM-based XSS typically requires user interaction but can be exploited via crafted links or stored payloads.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 0.9.4 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/progress-tracker/vulnerability/wordpress-progress-tracker-plugin-0-9-3-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Go to Plugins → Installed Plugins. 3. Find 'Progress Tracker' and click 'Update Now'. 4. Verify update to version 0.9.4 or higher.

🔧 Temporary Workarounds

Disable Progress Tracker plugin

all

Temporarily disable the vulnerable plugin until patching is possible

wp plugin deactivate progress-tracker

Implement Content Security Policy

all

Add CSP headers to restrict script execution sources

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to nginx config: add_header Content-Security-Policy "default-src 'self'; script-src 'self'";

🧯 If You Can't Patch

  • Disable the Progress Tracker plugin immediately
  • Implement web application firewall (WAF) rules to block XSS payloads

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for Progress Tracker version

Check Version:

wp plugin get progress-tracker --field=version

Verify Fix Applied:

Verify Progress Tracker plugin version is 0.9.4 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST/GET requests to Progress Tracker endpoints with script tags
  • Multiple failed login attempts after visiting Progress Tracker pages

Network Indicators:

  • Outbound connections to suspicious domains from users who visited Progress Tracker pages

SIEM Query:

source="wordpress.log" AND ("progress-tracker" OR "progress_tracker") AND ("<script>" OR "javascript:" OR "onload=" OR "onerror=")

🔗 References

📤 Share & Export