CVE-2025-67960

7.1 HIGH

📋 TL;DR

This is a reflected cross-site scripting (XSS) vulnerability in the WorkScout-Core WordPress plugin that allows attackers to inject malicious scripts into web pages. When exploited, it can enable session hijacking, credential theft, or website defacement. All WordPress sites using WorkScout-Core version 1.7.06 or earlier are affected.

💻 Affected Systems

Products:
  • WorkScout-Core WordPress Plugin
Versions: All versions up to and including 1.7.06
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: The vulnerability exists in the plugin's input handling during web page generation. All WordPress installations with the vulnerable plugin version 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 could steal administrator credentials, take over WordPress sites, install backdoors, or redirect users to malicious sites, potentially leading to complete site compromise and data breaches.

🟠

Likely Case

Attackers typically use this to steal user session cookies, perform phishing attacks, or deface websites by injecting malicious content visible to other users.

🟢

If Mitigated

With proper input validation and output encoding, the malicious scripts would be neutralized, preventing any exploitation while maintaining normal plugin functionality.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Reflected XSS vulnerabilities are commonly exploited and require minimal technical skill. Attackers typically craft malicious URLs containing the payload.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.7.06

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/workscout-core/vulnerability/wordpress-workscout-core-plugin-1-7-06-cross-site-scripting-xss-vulnerability-2?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find WorkScout-Core plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and remove the plugin, then install the latest version from WordPress repository.

🔧 Temporary Workarounds

Input Validation Web Application Firewall Rule

all

Configure WAF to block requests containing suspicious script patterns in URL parameters

Content Security Policy Implementation

all

Implement CSP headers to restrict script execution sources and prevent inline script execution

Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Header set X-Content-Type-Options "nosniff"

🧯 If You Can't Patch

  • Disable or remove the WorkScout-Core plugin entirely from WordPress installation
  • Implement strict input validation and output encoding at application level for all user inputs

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for WorkScout-Core version. If version is 1.7.06 or earlier, the system is vulnerable.

Check Version:

wp plugin list --name=workscout-core --field=version

Verify Fix Applied:

After updating, verify the plugin version shows higher than 1.7.06 in WordPress admin panel. Test the previously vulnerable endpoints with XSS payloads to confirm they're now properly sanitized.

📡 Detection & Monitoring

Log Indicators:

  • Unusual GET requests with script tags or JavaScript code in URL parameters
  • Multiple failed attempts to access plugin-specific endpoints with encoded payloads
  • User agents containing script injection patterns

Network Indicators:

  • HTTP requests containing <script>, javascript:, or encoded XSS payloads in query strings
  • Traffic to plugin-specific endpoints with suspicious parameter values

SIEM Query:

source="web_server_logs" AND (uri="*workscout*" OR uri="*wp-content/plugins/workscout-core*") AND (query="*<script>*" OR query="*javascript:*" OR query="*%3Cscript%3E*")

🔗 References

📤 Share & Export