CVE-2025-67983
📋 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
- WP Visitor Statistics (Real Time Traffic) WordPress plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- 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.
🎯 Exploit Status
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
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
allTemporarily disable vulnerable plugin until patched
wp plugin deactivate wp-stats-manager
Implement Content Security Policy
allAdd 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=*")