CVE-2025-22473 Overview
CVE-2025-22473 is a command injection vulnerability affecting Dell SmartFabric OS10, the network operating system that powers Dell's data center switching platforms. The flaw stems from improper neutralization of special elements used in a command [CWE-77]. A low-privileged attacker with local access can inject arbitrary shell commands, resulting in code execution on the underlying switch operating system. Dell has published multiple advisories addressing the issue across affected release trains.
Critical Impact
Successful exploitation grants an authenticated local attacker code execution on the switch, undermining the confidentiality, integrity, and availability of network fabric operations.
Affected Products
- Dell SmartFabric OS10 versions 10.5.4.x
- Dell SmartFabric OS10 versions 10.5.5.x and 10.5.6.x
- Dell SmartFabric OS10 versions 10.6.0.x
Discovery Timeline
- 2025-03-17 - CVE-2025-22473 published to the National Vulnerability Database
- 2026-06-17 - Last updated in NVD database
Technical Details for CVE-2025-22473
Vulnerability Analysis
CVE-2025-22473 is classified under [CWE-77] Improper Neutralization of Special Elements used in a Command. Dell SmartFabric OS10 exposes command-line interfaces and administrative utilities that pass user-supplied input into system-level command execution paths. When input is not properly sanitized, an attacker can append shell metacharacters to escape the intended command context and execute arbitrary operating system commands.
The attacker must already possess low-privileged local access to the switch, typically via an authenticated CLI session. Once command injection succeeds, the attacker inherits the privilege level of the vulnerable process, which on network operating systems frequently exceeds the attacker's assigned role. This creates a path from restricted administrative access to broader control over the switch fabric.
Root Cause
The root cause is missing or incomplete input validation on parameters that are passed to a shell interpreter or command execution function within SmartFabric OS10. Special characters such as ;, |, &, and backticks are not neutralized before command construction.
Attack Vector
Exploitation requires local access with low privileges and no user interaction. The attacker submits a crafted argument to a vulnerable CLI command or management interface. The injected payload is interpreted by the underlying shell, executing attacker-controlled commands in the context of the OS10 service. See the Dell Security Update DSA-2025-070 for vendor technical details.
No verified public proof-of-concept code is available for CVE-2025-22473 at this time. Refer to Dell's advisories for authoritative technical guidance.
Detection Methods for CVE-2025-22473
Indicators of Compromise
- Unexpected shell processes spawned by OS10 management daemons or CLI worker processes on the switch.
- CLI audit log entries containing shell metacharacters such as ;, |, &&, or backticks in command arguments.
- Outbound connections initiated from the switch management plane to unfamiliar destinations following administrative sessions.
Detection Strategies
- Enable and centralize OS10 CLI accounting and audit logs, then alert on command arguments containing shell metacharacters or encoded equivalents.
- Baseline normal administrator command patterns and flag deviations, particularly commands issued by low-privileged accounts that spawn child processes.
- Correlate switch syslog events with identity and change management data to identify unauthorized privilege elevation attempts.
Monitoring Recommendations
- Forward OS10 syslog and AAA accounting streams to a centralized SIEM or data lake for retention and correlation.
- Monitor authentication events for low-privileged accounts accessing the switch CLI outside of approved change windows.
- Track configuration changes and process execution telemetry from managed infrastructure hosts that administer OS10 devices.
How to Mitigate CVE-2025-22473
Immediate Actions Required
- Apply the fixed OS10 releases referenced in Dell advisories DSA-2025-068, DSA-2025-069, DSA-2025-070, and DSA-2025-079 to all affected switches.
- Inventory SmartFabric OS10 devices and confirm running versions against the affected 10.5.4.x, 10.5.5.x, 10.5.6.x, and 10.6.0.x trains.
- Restrict CLI and management-plane access to a small set of trusted bastion hosts and administrator accounts.
Patch Information
Dell has released fixed versions of SmartFabric OS10 addressing CVE-2025-22473. Consult the vendor advisories for the exact patched builds that correspond to each affected release train: DSA-2025-068, DSA-2025-069, DSA-2025-070, and DSA-2025-079.
Workarounds
- Remove or reduce local CLI privileges for accounts that do not require administrative shell access on OS10 switches.
- Enforce role-based access control and multi-factor authentication for all switch management interfaces via TACACS+ or RADIUS.
- Isolate the management network with strict ACLs so that only jump hosts can reach the OS10 control plane.
# Configuration example: restrict management access and enable auditing on OS10
OS10# configure terminal
OS10(config)# management route 0.0.0.0/0 <mgmt-gateway>
OS10(config)# ip access-list MGMT-ONLY
OS10(config-ipv4-acl)# permit ip <bastion-subnet> any
OS10(config-ipv4-acl)# deny ip any any log
OS10(config)# aaa accounting commands all default start-stop group tacacs+
OS10(config)# logging server <siem-collector> severity informational
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

