CVE-2026-67271 Overview
CVE-2026-67271 is an out-of-bounds write vulnerability [CWE-787] in the Server Message Block/Common Internet File System (SMB/CIFS) implementation of Dell PowerStore SDNAS. An unauthenticated remote attacker can exploit this flaw by sending a specially crafted SMB packet to the target system. Successful exploitation can cause a denial of service through a service crash. When automatic restarts are enabled, the crash condition persists across restarts. A more sophisticated attacker can leverage the same memory corruption primitive to achieve remote code execution on the storage appliance. Dell disclosed the issue in security advisory DSA-2026-330.
Critical Impact
Unauthenticated remote attackers can crash SDNAS or execute arbitrary code by sending a malformed SMB packet, threatening the availability and integrity of enterprise storage.
Affected Products
- Dell PowerStore T
- Dell PowerStore SDNAS (Software-Defined NAS component)
- SMB/CIFS service exposed by PowerStore SDNAS
Discovery Timeline
- 2026-08-18 - CVE-2026-67271 published to the National Vulnerability Database (NVD)
- 2026-08-20 - Last updated in NVD database
Technical Details for CVE-2026-67271
Vulnerability Analysis
The flaw resides in the SMB/CIFS packet handling logic of Dell PowerStore SDNAS. A remote attacker submits a crafted SMB request that causes the service to write data past the bounds of an allocated buffer. The out-of-bounds write corrupts adjacent memory structures used by the SMB service.
The most reliable outcome is a service crash, producing a denial-of-service condition. If automatic service restarts are enabled, the malformed request continues to trigger the crash on restart, making the outage persistent until the packet source is blocked or the system is patched. A skilled attacker can shape the overwrite to hijack control flow and achieve remote code execution in the context of the SDNAS process.
Root Cause
The root cause is improper validation of length or offset fields in an SMB/CIFS message before writing attacker-controlled data into a fixed-size buffer. This matches the [CWE-787] class of out-of-bounds write defects, where the write pointer or size is derived from untrusted input.
Attack Vector
Exploitation requires only network reachability to the SMB service (typically TCP port 445) on the PowerStore SDNAS interface. No authentication and no user interaction are required. Any host that can reach the SDNAS SMB listener, including compromised internal systems, can deliver the payload. Refer to the Dell Security Update DSA-2026-330 for vendor technical details.
// No verified public proof-of-concept is available.
// The vulnerability is triggered by a malformed SMB/CIFS packet
// containing crafted length or offset fields that cause the SDNAS
// SMB handler to write attacker-controlled bytes beyond an
// allocated buffer boundary.
Detection Methods for CVE-2026-67271
Indicators of Compromise
- Unexpected crashes or repeated restarts of the SDNAS SMB service on PowerStore appliances.
- SMB sessions from unusual source IPs immediately preceding a service fault.
- Malformed SMB packets flagged by network sensors with abnormal header length or offset fields.
- Loss of NAS share availability with corresponding error events in PowerStore logs.
Detection Strategies
- Inspect SMB/CIFS traffic at network chokepoints for oversized or malformed field values in SMB headers.
- Correlate SDNAS service crash events with recent inbound SMB connections from external or non-standard sources.
- Alert on anomalous SMB negotiation patterns targeting PowerStore management or data interfaces.
Monitoring Recommendations
- Forward PowerStore appliance logs and SDNAS service telemetry to a centralized analytics platform for correlation.
- Monitor TCP port 445 exposure on PowerStore interfaces and alert on connections from untrusted network segments.
- Track service uptime metrics for the SDNAS SMB process to detect repeated restart loops.
How to Mitigate CVE-2026-67271
Immediate Actions Required
- Apply the fixed PowerStore SDNAS firmware specified in Dell Security Update DSA-2026-330 as soon as maintenance windows allow.
- Restrict network access to SMB/CIFS ports on PowerStore SDNAS to authorized management and client subnets only.
- Audit exposure of TCP port 445 on all PowerStore appliances and remove any internet-facing exposure immediately.
Patch Information
Dell has released fixed versions of PowerStore that remediate CVE-2026-67271. Consult Dell advisory DSA-2026-330 for the specific PowerStoreOS build numbers and upgrade instructions applicable to your model. Verify SDNAS component versions after upgrade to confirm the patched build is active.
Workarounds
- Place PowerStore SDNAS interfaces behind a firewall that only permits SMB traffic from known NAS clients.
- Disable SMB/CIFS shares on affected appliances if the protocol is not required for business operations.
- Consider disabling automatic service restart on the SDNAS SMB process to avoid a persistent crash loop while a remediation plan is executed.
# Example: restrict SMB access to trusted client subnets on an upstream firewall
# Replace 10.10.20.0/24 with the authorized NAS client subnet
# and 192.0.2.10 with the PowerStore SDNAS data interface
iptables -A FORWARD -p tcp -s 10.10.20.0/24 -d 192.0.2.10 --dport 445 -j ACCEPT
iptables -A FORWARD -p tcp -d 192.0.2.10 --dport 445 -j DROP
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

