CVE-2025-63072

6.5 MEDIUM

📋 TL;DR

This stored cross-site scripting (XSS) vulnerability in THEMECO Cornerstone WordPress plugin allows attackers to inject malicious scripts into web pages that are then executed when other users view those pages. All WordPress sites using Cornerstone plugin versions up to and including 7.7.3 are affected. The vulnerability occurs due to improper input sanitization during web page generation.

💻 Affected Systems

Products:
  • THEMECO Cornerstone WordPress plugin
Versions: n/a through <= 7.7.3
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Cornerstone plugin enabled. Vulnerability is in the plugin itself, not dependent on specific OS or server 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 session cookies, perform actions as authenticated users, deface websites, or redirect users to malicious sites, potentially leading to complete site compromise.

🟠

Likely Case

Attackers inject malicious JavaScript that steals user session cookies or credentials when users visit compromised pages, leading to account takeover.

🟢

If Mitigated

With proper content security policies and input validation, the impact is limited to potential data leakage from the affected page only.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Stored XSS vulnerabilities are commonly exploited. While no public PoC is confirmed, the vulnerability type suggests exploitation is straightforward for attackers with basic web security knowledge.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: >7.7.3

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/cornerstone/vulnerability/wordpress-cornerstone-plugin-7-7-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 Cornerstone plugin. 4. Click 'Update Now' if update is available. 5. Alternatively, download latest version from WordPress repository and manually update.

🔧 Temporary Workarounds

Temporary plugin deactivation

all

Disable Cornerstone plugin until patch can be applied

wp plugin deactivate cornerstone

Content Security Policy implementation

all

Add CSP headers to restrict script execution sources

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

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block XSS payloads
  • Restrict user input fields and implement output encoding on all user-controlled data

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for Cornerstone version. If version is 7.7.3 or lower, system is vulnerable.

Check Version:

wp plugin get cornerstone --field=version

Verify Fix Applied:

Verify Cornerstone plugin version is greater than 7.7.3 in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to Cornerstone endpoints with script tags
  • Multiple failed login attempts following page views

Network Indicators:

  • Outbound connections to suspicious domains after page loads
  • Unexpected JavaScript execution in browser developer tools

SIEM Query:

source="wordpress" AND (uri="*cornerstone*" AND (body="*<script>*" OR body="*javascript:*"))

🔗 References

📤 Share & Export