Security Vulnerability Report
中文
CVE-2025-46068 CVSS 8.8 HIGH

CVE-2025-46068

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

Description

An issue in Automai Director v.25.2.0 allows a remote attacker to execute arbitrary code via the update mechanism

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-46068 PoC Analysis Framework # This is a structural representation for educational purposes import requests import json def check_cve_2025_46068(target_url): """ CVE-2025-46068 Verification Framework Target: Automai Director v.25.2.0 Vulnerability: RCE via update mechanism """ # Note: Actual exploitation requires proper authentication and target-specific analysis # This framework demonstrates the vulnerability assessment methodology result = { 'cve_id': 'CVE-2025-46068', 'target': target_url, 'vulnerable': None, 'checks_performed': [] } # Check 1: Identify Automai Director version version_check = check_version(target_url) result['checks_performed'].append(version_check) # Check 2: Verify update endpoint exposure update_check = check_update_endpoint(target_url) result['checks_performed'].append(update_check) # Check 3: Test update mechanism authentication auth_check = test_update_authentication(target_url) result['checks_performed'].append(auth_check) return result

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46068", "sourceIdentifier": "[email protected]", "published": "2026-01-12T17:15:51.050", "lastModified": "2026-01-21T22:03:23.760", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Automai Director v.25.2.0 allows a remote attacker to execute arbitrary code via the update mechanism"}, {"lang": "es", "value": "Un problema en Automai Director v.25.2.0 permite a un atacante remoto ejecutar código arbitrario a través del mecanismo de actualización."}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "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/00ea6cce1299e1d999b5d1faac4248f1", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.automai.com/", "source": "[email protected]", "tags": ["Product"]}]}}