CVE-2025-11174
📋 TL;DR
The Document Library Lite WordPress plugin has an improper authorization vulnerability that allows unauthenticated attackers to retrieve unpublished document titles and content via an exposed AJAX endpoint. This affects all WordPress sites using the plugin up to version 1.1.6. Attackers can access draft, pending, and future documents without authentication.
💻 Affected Systems
- Document Library Lite 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
Sensitive unpublished documents containing confidential information are exposed to unauthorized parties, potentially leading to data breaches, intellectual property theft, or regulatory violations.
Likely Case
Attackers harvest unpublished document metadata and content for reconnaissance, competitive intelligence gathering, or to find sensitive information.
If Mitigated
Limited exposure of non-critical draft documents with minimal sensitive content.
🎯 Exploit Status
Exploitation requires simple HTTP requests to WordPress AJAX endpoints with crafted parameters.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 1.1.7 or later
Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3385033/document-library-lite/trunk/src/Table/Ajax_Handler.php
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find Document Library Lite. 4. Click 'Update Now' if update available. 5. Alternatively, download version 1.1.7+ from WordPress.org and replace plugin files.
🔧 Temporary Workarounds
Disable vulnerable AJAX endpoint
allRemove or block access to the dll_load_posts AJAX action via .htaccess or plugin modification
# Add to .htaccess or site config:
RewriteCond %{QUERY_STRING} action=dll_load_posts
RewriteRule ^wp-admin/admin-ajax\.php$ - [F,L]
Deactivate plugin
linuxTemporarily disable the Document Library Lite plugin until patched
wp plugin deactivate document-library-lite
🧯 If You Can't Patch
- Implement web application firewall (WAF) rules to block requests containing 'action=dll_load_posts' parameter
- Restrict access to /wp-admin/admin-ajax.php via IP whitelisting or authentication requirements
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → Document Library Lite version. If version ≤1.1.6, vulnerable. Test by sending GET request to /wp-admin/admin-ajax.php?action=dll_load_posts with args[status]=any
Check Version:
wp plugin get document-library-lite --field=version
Verify Fix Applied:
Confirm plugin version is 1.1.7+. Test the same endpoint should return authorization error or no data for unauthenticated requests.
📡 Detection & Monitoring
Log Indicators:
- Multiple requests to /wp-admin/admin-ajax.php with action=dll_load_posts
- Unusual parameter patterns like args[status]=any or args[status]=draft from unauthenticated IPs
Network Indicators:
- HTTP GET requests to WordPress AJAX endpoints with dll_load_posts action from external IPs
- Unusual spikes in requests to admin-ajax.php
SIEM Query:
source="web_logs" AND url_path="/wp-admin/admin-ajax.php" AND query_string="*action=dll_load_posts*" AND NOT user_agent="*bot*" | stats count by src_ip
🔗 References
- https://plugins.trac.wordpress.org/browser/document-library-lite/tags/1.1.5/src/Simple_Document_Library.php#L492
- https://plugins.trac.wordpress.org/browser/document-library-lite/tags/1.1.5/src/Table/Ajax_Handler.php#L23
- https://plugins.trac.wordpress.org/browser/document-library-lite/tags/1.1.5/src/Table/Ajax_Handler.php#L32
- https://plugins.trac.wordpress.org/changeset/3385033/document-library-lite/trunk/src/Table/Ajax_Handler.php
- https://www.wordfence.com/threat-intel/vulnerabilities/id/2b73d48a-1f10-4e47-a18f-82a3103b72bd?source=cve