CVE-2025-67983

6.5 MEDIUM

📋 TL;DR

This DOM-based XSS vulnerability in WP Visitor Statistics plugin allows attackers to inject malicious scripts that execute in users' browsers when they visit compromised WordPress pages. It affects all WordPress sites running the plugin version 8.3 or earlier. Attackers can steal session cookies, redirect users, or perform actions on their behalf.

💻 Affected Systems

Products:
  • WP Visitor Statistics (Real Time Traffic) WordPress plugin
Versions: All versions up to and including 8.3
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Vulnerability exists in default plugin configuration. Requires WordPress installation with plugin activated.

⚠️ 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 use site to attack visitors.

🟠

Likely Case

Attackers steal user session cookies, redirect visitors to malicious sites, or perform limited actions as authenticated users.

🟢

If Mitigated

Script execution blocked by Content Security Policy or browser XSS filters, limiting impact to specific user actions.

🌐 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 triggered via crafted URLs. No authentication required for exploitation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version 8.4 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/wp-stats-manager/vulnerability/wordpress-wp-visitor-statistics-real-time-traffic-plugin-8-3-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'WP Visitor Statistics (Real Time Traffic)'. 4. Click 'Update Now' if update available. 5. Alternatively, download version 8.4+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable vulnerable plugin until patched

wp plugin deactivate wp-stats-manager

Implement Content Security Policy

all

Add CSP header to block inline script execution

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

  • Implement web application firewall (WAF) rules to block XSS payloads
  • Restrict plugin access to trusted IP addresses only

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for WP Visitor Statistics version. If version is 8.3 or lower, vulnerable.

Check Version:

wp plugin get wp-stats-manager --field=version

Verify Fix Applied:

Verify plugin version shows 8.4 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual JavaScript in URL parameters
  • Multiple requests with script tags in query strings
  • Unexpected redirects from plugin pages

Network Indicators:

  • HTTP requests containing <script> tags in parameters
  • Outbound connections to suspicious domains from plugin pages

SIEM Query:

source="wordpress" AND (uri="*<script>*" OR uri="*javascript:*" OR uri="*onload=*" OR uri="*onerror=*")

🔗 References

📤 Share & Export