CVE-2025-23773

6.5 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the WordPress 'Delete All Posts' plugin that allows attackers to delete all posts without proper authentication. It affects all versions up to and including 1.1.1. WordPress administrators using this plugin are at risk of content destruction.

💻 Affected Systems

Products:
  • WordPress Delete All Posts plugin
Versions: n/a through 1.1.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all WordPress installations with the vulnerable plugin version installed and activated.

⚠️ 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

Complete deletion of all website posts and content, causing permanent data loss and website disruption.

🟠

Likely Case

Malicious actors deleting posts to deface websites, disrupt operations, or cause reputational damage.

🟢

If Mitigated

No impact if proper authorization controls are implemented or plugin is removed.

🌐 Internet-Facing: HIGH - WordPress sites are typically internet-facing, making them directly accessible to attackers.
🏢 Internal Only: LOW - This is a WordPress plugin vulnerability primarily affecting public-facing websites.

🎯 Exploit Status

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

Simple HTTP request to vulnerable endpoint can trigger mass deletion without authentication.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.1.1

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/delele-all/vulnerability/wordpress-delete-all-posts-plugin-1-1-1-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins. 3. Find 'Delete All Posts' plugin. 4. Update to latest version or remove plugin entirely.

🔧 Temporary Workarounds

Disable or Remove Plugin

all

Completely remove the vulnerable plugin from WordPress installation

wp plugin deactivate delete-all-posts
wp plugin delete delete-all-posts

Web Application Firewall Rule

all

Block requests to the vulnerable plugin endpoint

Add WAF rule to block: /wp-admin/admin-ajax.php?action=delete_all_posts

🧯 If You Can't Patch

  • Implement strict network access controls to limit access to WordPress admin interface
  • Enable comprehensive logging and monitoring for post deletion activities

🔍 How to Verify

Check if Vulnerable:

Check WordPress plugin list for 'Delete All Posts' version 1.1.1 or earlier

Check Version:

wp plugin list --name='Delete All Posts' --field=version

Verify Fix Applied:

Verify plugin is either removed or updated to version after 1.1.1

📡 Detection & Monitoring

Log Indicators:

  • Multiple POST requests to /wp-admin/admin-ajax.php with action=delete_all_posts
  • Sudden drop in post count in database logs

Network Indicators:

  • HTTP requests to vulnerable endpoint without authentication headers
  • Unusual traffic patterns to WordPress admin interface

SIEM Query:

source="wordpress.logs" AND (uri_path="/wp-admin/admin-ajax.php" AND query_string="action=delete_all_posts")

🔗 References

📤 Share & Export