CVE-2025-12372

4.3 MEDIUM

📋 TL;DR

The Permalinks Cascade WordPress plugin has a missing authorization vulnerability that allows authenticated users with subscriber-level access or higher to perform administrative actions without proper permissions. Attackers can modify plugin settings like automatic pinging and page exclusions. All WordPress sites using this plugin up to version 2.2 are affected.

💻 Affected Systems

Products:
  • Permalinks Cascade WordPress Plugin
Versions: All versions up to and including 2.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the plugin activated. Vulnerability exists in default 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 disable critical SEO functionality, modify site structure settings, or potentially chain with other vulnerabilities to gain full administrative control.

🟠

Likely Case

Malicious users could disrupt SEO operations by disabling automatic pinging or modifying page exclusion settings, potentially affecting search engine visibility.

🟢

If Mitigated

With proper access controls and monitoring, impact is limited to minor configuration changes that can be detected and reverted.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitation requires authenticated access (subscriber or higher). The vulnerability is in a specific AJAX handler function.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 2.3 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&new=3200000%40the-permalinks-cascade%2F2.3&old=3199999%40the-permalinks-cascade%2F2.2

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find Permalinks Cascade plugin. 4. Click 'Update Now' if available, or manually update to version 2.3+. 5. Verify plugin is active and functioning.

🔧 Temporary Workarounds

Disable vulnerable AJAX endpoint

all

Remove or restrict access to the vulnerable handleTPCAdminAjaxRequest function

Edit wp-content/plugins/the-permalinks-cascade/admin/admin-controller.class.php and comment out or remove lines 109-130

Restrict user roles

all

Temporarily limit subscriber-level access or review user permissions

Use WordPress role management plugins or custom code to restrict subscriber capabilities

🧯 If You Can't Patch

  • Deactivate the Permalinks Cascade plugin entirely until patched
  • Implement strict monitoring of AJAX requests to /wp-admin/admin-ajax.php for suspicious activity

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Permalinks Cascade. If version is 2.2 or lower, you are vulnerable.

Check Version:

wp plugin list --name=permalinks-cascade --field=version (if WP-CLI installed) or check WordPress admin interface

Verify Fix Applied:

Verify plugin version is 2.3 or higher in WordPress admin panel. Test that only administrators can modify plugin settings.

📡 Detection & Monitoring

Log Indicators:

  • Unusual AJAX requests to admin-ajax.php with action=tpc_admin_ajax from non-admin users
  • Changes to permalinks_cascade_settings option from non-admin users

Network Indicators:

  • POST requests to /wp-admin/admin-ajax.php with action parameter containing 'tpc_admin_ajax' from unauthorized IPs

SIEM Query:

source="wordpress.log" AND "admin-ajax.php" AND "tpc_admin_ajax" AND NOT user_role="administrator"

🔗 References

📤 Share & Export