CVE-2025-32630
📋 TL;DR
This vulnerability allows attackers to inject malicious scripts into WP-BusinessDirectory WordPress plugin pages, which execute in victims' browsers when they visit specially crafted URLs. It affects all WordPress sites using WP-BusinessDirectory plugin versions up to 3.1.2. The vulnerability enables reflected cross-site scripting attacks.
💻 Affected Systems
- WP-BusinessDirectory 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 could steal administrator session cookies, perform actions as authenticated users, deface websites, or redirect users to malicious sites.
Likely Case
Attackers craft phishing emails with malicious links that steal user session data when clicked, potentially compromising user accounts.
If Mitigated
With proper input validation and output encoding, malicious scripts would be neutralized before reaching users' browsers.
🎯 Exploit Status
Reflected XSS vulnerabilities are commonly exploited via phishing campaigns and require user interaction.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 3.1.3 or later
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find WP-BusinessDirectory. 4. Click 'Update Now' if update available. 5. If no update appears, manually download version 3.1.3+ from WordPress repository.
🔧 Temporary Workarounds
Disable Plugin
allTemporarily disable the vulnerable plugin until patched.
wp plugin deactivate wp-businessdirectory
Web Application Firewall
allDeploy WAF rules to block XSS payloads targeting the plugin.
🧯 If You Can't Patch
- Implement Content Security Policy (CSP) headers to restrict script execution
- Use browser security features like HttpOnly cookies and SameSite attributes
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin > Plugins > Installed Plugins for WP-BusinessDirectory version 3.1.2 or earlier.
Check Version:
wp plugin get wp-businessdirectory --field=version
Verify Fix Applied:
Verify plugin version is 3.1.3 or later in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Unusual GET/POST requests with script tags or JavaScript payloads to WP-BusinessDirectory endpoints
- Multiple failed login attempts following suspicious URL visits
Network Indicators:
- HTTP requests containing <script> tags or JavaScript code in URL parameters
- Traffic patterns showing users accessing unusual URLs with encoded payloads
SIEM Query:
source="web_server" AND (uri="*wp-businessdirectory*" AND (uri="*<script>*" OR uri="*javascript:*" OR uri="*onload=*"))