CVE-2025-60120
📋 TL;DR
This CVE describes a missing authorization vulnerability in the WP Directory Kit WordPress plugin that allows attackers to bypass access controls. It affects all versions up to 1.3.8, potentially enabling unauthorized access to directory management functions. WordPress sites using this plugin are vulnerable.
💻 Affected Systems
- WP Directory Kit WordPress Plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Attackers could modify directory listings, delete content, or access sensitive user data stored in the directory system.
Likely Case
Unauthorized users could edit or delete directory entries they shouldn't have access to, potentially defacing the directory or removing legitimate listings.
If Mitigated
With proper access controls and authentication checks, only authorized administrators could perform directory management actions.
🎯 Exploit Status
Exploitation requires understanding of WordPress plugin structure and access control mechanisms.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Version 1.3.9 or later
Restart Required: No
Instructions:
1. Log into WordPress admin panel
2. Navigate to Plugins > Installed Plugins
3. Find WP Directory Kit
4. Click 'Update Now' if available
5. If no update appears, download version 1.3.9+ from WordPress.org
6. Deactivate, delete old version, upload and activate new version
🔧 Temporary Workarounds
Temporary Plugin Deactivation
WordPressDisable the vulnerable plugin until patched version is available
wp plugin deactivate wpdirectorykit
🧯 If You Can't Patch
- Implement strict network access controls to limit who can access the WordPress admin interface
- Enable detailed logging of all directory management actions and monitor for unauthorized changes
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel > Plugins > Installed Plugins for WP Directory Kit version
Check Version:
wp plugin get wpdirectorykit --field=version
Verify Fix Applied:
Verify WP Directory Kit version is 1.3.9 or higher in WordPress admin
📡 Detection & Monitoring
Log Indicators:
- Unauthorized directory modifications
- Unexpected user IDs performing directory management actions
- Failed authorization attempts for directory functions
Network Indicators:
- Unusual patterns of requests to wp-admin/admin-ajax.php with directory-related actions
SIEM Query:
source="wordpress.log" AND ("wpdirectorykit" OR "directory_kit") AND ("update" OR "delete" OR "edit") AND NOT user_role="administrator"