Security Vulnerability Report
中文
CVE-2026-8487 CVSS 6.5 MEDIUM

CVE-2026-8487

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

Description

Incorrect default permissions vulnerability in Progress Software MOVEit Automation allows Retrieve Embedded Sensitive Data. This issue affects MOVEit Automation: before 2025.0.11, from 2025.1.0 before 2025.1.7.

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)

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
import os # Proof of Concept for CVE-2026-8487 # This script checks if sensitive configuration files are readable by low-privilege users def check_permissions(target_file): print(f"[*] Checking permissions for: {target_file}") if os.path.exists(target_file): # Get file permissions mode = os.stat(target_file).st_mode is_readable = os.access(target_file, os.R_OK) if is_readable: print(f"[+] Vulnerability Detected: File is readable!") print(f"[+] Content preview (first 100 bytes):") try: with open(target_file, 'r') as f: print(f.read(100)) except Exception as e: print("Error reading file:", e) else: print("[-] Permissions seem secure for current user.") else: print("[-] Target file not found.") # Example path (Adjust based on actual installation) config_path = "/path/to/moveit/automation/config/sensitive.xml" check_permissions(config_path)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8487", "sourceIdentifier": "[email protected]", "published": "2026-05-20T16:16:27.463", "lastModified": "2026-05-20T17:32:35.827", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect default permissions vulnerability in Progress Software MOVEit Automation allows Retrieve Embedded Sensitive Data.\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: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": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-276"}]}], "references": [{"url": "https://docs.progress.com/bundle/moveit-automation-release-notes-2026/page/Fixed-Issues-2026.html", "source": "[email protected]"}]}}