CVE-2025-68885

7.1 HIGH

📋 TL;DR

A Cross-Site Request Forgery (CSRF) vulnerability in the Page Carbajal Custom Post Status WordPress plugin allows attackers to perform stored cross-site scripting (XSS) attacks. This affects WordPress sites using the Custom Post Status plugin. Attackers can inject malicious scripts that execute when other users view affected pages.

💻 Affected Systems

Products:
  • Page Carbajal Custom Post Status WordPress Plugin
Versions: All versions up to and including 1.1.0
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with the Custom Post Status plugin enabled and active.

⚠️ 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 performs actions on behalf of authenticated users, potentially leading to complete site compromise.

🟠

Likely Case

Attackers inject malicious scripts that execute when users view affected posts/pages, potentially stealing session cookies or performing unauthorized actions.

🟢

If Mitigated

With proper CSRF protections and input validation, the vulnerability would be prevented, limiting impact to minor functionality issues.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires tricking authenticated users into visiting malicious pages. CSRF to stored XSS chain makes this relatively straightforward for attackers.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.1.0

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/custom-post-status/vulnerability/wordpress-custom-post-status-plugin-1-1-0-cross-site-request-forgery-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 'Custom Post Status' plugin. 4. Click 'Update Now' if available. 5. If no update available, deactivate and delete the plugin.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched version is available

wp plugin deactivate custom-post-status

Implement CSRF Protection

all

Add CSRF tokens to plugin forms via custom code

🧯 If You Can't Patch

  • Deactivate and remove the Custom Post Status plugin immediately
  • Implement web application firewall (WAF) rules to block CSRF attempts and XSS payloads

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for 'Custom Post Status' version 1.1.0 or earlier

Check Version:

wp plugin get custom-post-status --field=version

Verify Fix Applied:

Verify plugin version is higher than 1.1.0 or plugin is completely removed

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to wp-admin/admin-ajax.php or plugin-specific endpoints
  • Multiple failed CSRF token validations

Network Indicators:

  • Requests containing malicious JavaScript payloads in POST parameters
  • Cross-origin requests to plugin endpoints without proper referrer headers

SIEM Query:

source="wordpress.log" AND ("custom-post-status" OR "admin-ajax") AND (POST AND NOT "_wpnonce")

🔗 References

📤 Share & Export