CVE-2026-32658 Overview
CVE-2026-32658 is a missing authorization vulnerability [CWE-862] in Dell Automation Platform versions prior to 2.0.0.0. A low-privileged attacker with remote network access can exploit the flaw to elevate privileges within the platform. The vulnerability stems from improper authorization checks on protected functionality, allowing authenticated users to perform actions outside their assigned role. Dell disclosed the issue in security advisory DSA-2026-193 and released a fixed release that enforces authorization on the affected endpoints.
Critical Impact
Authenticated remote attackers can escalate privileges across Dell Automation Platform, gaining high impact on confidentiality, integrity, and availability of automation workflows.
Affected Products
- Dell Automation Platform versions prior to 2.0.0.0
- Deployments exposing the Automation Platform management interface to networked users
- Environments where low-privileged operator accounts exist on the platform
Discovery Timeline
- 2026-05-11 - CVE-2026-32658 published to the National Vulnerability Database (NVD)
- 2026-05-13 - Last updated in NVD database
Technical Details for CVE-2026-32658
Vulnerability Analysis
The vulnerability is classified under [CWE-862] Missing Authorization. Dell Automation Platform fails to verify that the requesting user holds the required privileges before executing certain operations. An authenticated user with a low-privilege role can invoke functions reserved for higher-privileged accounts. The result is vertical privilege escalation within the application, impacting confidentiality, integrity, and availability of orchestration workflows, credentials, and managed targets.
Dell Automation Platform is used to orchestrate infrastructure operations, so privilege escalation here can extend to systems the platform manages. An attacker with operator-level access could trigger administrative tasks, modify automation policies, or retrieve secrets used to reach downstream resources.
Root Cause
The root cause is the absence of server-side authorization enforcement on protected endpoints. The application checks authentication but does not validate that the caller's role grants access to the requested function. Authorization decisions appear to be made client-side or skipped entirely, so direct requests bypass the intended access model.
Attack Vector
Exploitation requires network access to the Automation Platform and valid low-privileged credentials. No user interaction is required. The attacker sends crafted requests to administrative endpoints that should reject the caller's role. Because the missing check is server-side, exploitation does not depend on bypassing the user interface and can be performed with standard HTTP tooling.
No public proof-of-concept code is available, and the EPSS probability remains low at the time of disclosure. Verified exploitation code is not provided in this advisory; consult Dell's DSA-2026-193 advisory for vendor-supplied technical details.
Detection Methods for CVE-2026-32658
Indicators of Compromise
- Authentication logs showing low-privileged accounts issuing requests to administrative API paths
- Unexpected creation or modification of automation jobs, role assignments, or credential stores by non-admin users
- HTTP 200 responses to privileged endpoints from sessions associated with operator-tier roles
Detection Strategies
- Correlate user role metadata with the endpoints invoked in Automation Platform access logs to flag role-to-action mismatches
- Alert on privilege-sensitive operations such as user role changes, credential exports, or pipeline modifications performed by non-administrative accounts
- Baseline normal API usage per role and trigger detections when accounts deviate from expected call patterns
Monitoring Recommendations
- Forward Dell Automation Platform application and audit logs to a centralized SIEM for retention and correlation
- Monitor outbound activity from the Automation Platform host for unusual access to managed systems following suspicious privilege changes
- Review authentication events for low-privilege accounts that suddenly perform administrative actions
How to Mitigate CVE-2026-32658
Immediate Actions Required
- Upgrade Dell Automation Platform to version 2.0.0.0 or later as directed in DSA-2026-193
- Audit existing user accounts and remove unused or over-permissioned low-privilege accounts that could be abused for escalation
- Rotate credentials and API tokens stored within Automation Platform after patching, in case prior access was abused
Patch Information
Dell has released a fix in Dell Automation Platform version 2.0.0.0. Refer to the Dell Security Update DSA-2026-193 advisory for download links, applicability, and upgrade instructions. Applying the vendor patch is the primary remediation, since the missing authorization check must be corrected in the application code.
Workarounds
- Restrict network access to the Automation Platform management interface to trusted administrative networks until the patch is applied
- Disable or suspend low-privileged accounts that are not actively required for operations
- Enforce multi-factor authentication on all Automation Platform accounts to reduce risk from credential reuse
# Example: restrict access to the management interface via host firewall
# Replace 10.0.0.0/24 with your administrative subnet
iptables -A INPUT -p tcp --dport 443 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j DROP
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

