CVE-2025-28897

7.1 HIGH

📋 TL;DR

A Cross-Site Request Forgery (CSRF) vulnerability in the Steveorevo Domain Theme WordPress plugin allows attackers to perform stored cross-site scripting (XSS) attacks. This affects WordPress sites using Domain Theme plugin versions up to 1.3. Attackers can trick authenticated administrators into executing malicious actions that inject persistent scripts.

💻 Affected Systems

Products:
  • Steveorevo Domain Theme WordPress Plugin
Versions: n/a through 1.3
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with Domain Theme plugin enabled. Attack requires administrator interaction with malicious content.

⚠️ 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 inject malicious JavaScript that steals administrator credentials, redirects users to malicious sites, or takes full control of the WordPress site when administrators view affected pages.

🟠

Likely Case

Attackers create fake requests that trick logged-in administrators into unknowingly adding malicious scripts to the site, leading to session hijacking or defacement.

🟢

If Mitigated

With proper CSRF tokens and input validation, the attack chain is broken and no XSS payload can be stored.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: MEDIUM

Exploitation requires social engineering to trick authenticated users into clicking malicious links. The CSRF leads to stored XSS, making it persistent.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.3

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/domain-theme/vulnerability/wordpress-domain-theme-plugin-1-3-csrf-to-stored-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Domain Theme' plugin. 4. Click 'Update Now' if update available. 5. If no update available, disable and remove the plugin immediately.

🔧 Temporary Workarounds

Implement CSRF Protection

all

Add CSRF tokens to all form submissions and state-changing actions in the plugin code.

Input Validation and Sanitization

all

Implement proper input validation and output escaping for all user-controllable data in the plugin.

🧯 If You Can't Patch

  • Disable or remove the Domain Theme plugin immediately
  • Implement web application firewall (WAF) rules to block CSRF attempts and XSS payloads

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for Domain Theme version. If version is 1.3 or earlier, you are vulnerable.

Check Version:

wp plugin list --name=domain-theme --field=version

Verify Fix Applied:

After update, verify Domain Theme plugin version is higher than 1.3. Test form submissions to ensure CSRF tokens are present.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to Domain Theme admin endpoints without referrer headers
  • Multiple failed CSRF token validations in WordPress logs

Network Indicators:

  • HTTP requests with suspicious JavaScript payloads in parameters targeting Domain Theme endpoints

SIEM Query:

source="wordpress.log" AND ("csrf" OR "invalid nonce") AND "domain-theme"

🔗 References

📤 Share & Export