Abuse of Azure Storage Utilities for Data Exfiltration
Threat actors, including Rhysida and Storm-0501, abuse native Microsoft Azure storage utilities as living-off-the-land binaries to exfiltrate data from compromised endpoints to attacker-controlled cloud storage.
Threat actors, specifically ransomware operators such as Rhysida and Storm-0501, are increasingly utilizing Microsoft Azure storage utilities - AzCopy and Azure Storage Explorer - to facilitate large-scale data exfiltration. These tools, which are legitimate administrative utilities, are leveraged as living-off-the-land binaries to bypass security controls. Attackers drop portable copies of these binaries onto victim machines or utilize pre-installed versions to initiate SAS-authenticated transfers. By issuing azcopy copy or azcopy sync commands against Azure Blob, Data Lake, or File storage endpoints, actors can pull data from compromised local environments or directly pull/push data between Azure storage containers to attacker-controlled infrastructure. The use of native, digitally signed binaries allows adversaries to blend in with legitimate administrative activity while bypassing standard file-based reputation filters.
Attack Chain
- Attacker gains initial access and establishes persistence on a Windows endpoint.
- Attacker performs reconnaissance to identify sensitive data locations on local disks or mapped Azure storage shares.
- Attacker drops a portable, legitimate copy of
azcopy.exeor uses the existing Azure Storage Explorer application. - Attacker crafts a command-line string including the target storage account, destination container, and a malicious SAS URL for authentication.
- Attacker executes
azcopyor launchesStorageExplorer.exeto initiate the data transfer. - Data is exfiltrated directly to an attacker-controlled Azure storage account using authenticated cloud APIs.
- Attacker removes the staging binaries to minimize footprint and clear indicators of exfiltration activity.
Impact
Successful exfiltration via these utilities results in the compromise of sensitive corporate and PII data stored within Azure environments. Attacks observed in the wild have led to substantial data theft from impacted organizations, which is subsequently leveraged for double-extortion ransomware operations. The speed of these tools allows for the exfiltration of large volumes of data in a short timeframe, significantly increasing the potential blast radius of a single compromised endpoint.
Recommendation
Detection engineering teams should monitor for the first-time execution of cloud sync tools on critical infrastructure.
- Implement the provided Sigma rule to identify abnormal execution of Azure storage tools on Windows hosts.
- Baseline administrative usage of AzCopy and Azure Storage Explorer to distinguish between authorized cloud migration tasks and malicious exfiltration.
- Investigate any process spawning these utilities from non-standard paths or when initiated by PowerShell/cmd.exe in an automated scripting context.
- Correlate endpoint-based execution alerts with Azure Storage diagnostic logs, specifically looking for
GetBlob,PutBlob, orBlobBlobactivity usingAzCopyorMicrosoft Azure Storage Exploreruser agents.
Immediate actions
Deploy Sigma detection rule to SIEM and tune against common administrative baseline.
Threat Hunt
Search for non-standard process paths for azcopy.exe or StorageExplorer.exe.
Data: Process creation events
Mitigations
Restrict outbound network access for storage-related utilities to approved storage account endpoints.
T1567.002
Detection coverage 1
Detect Suspicious AzCopy or Azure Storage Explorer Usage
mediumDetects the first-time execution of AzCopy or Azure Storage Explorer on a Windows host, a technique used by ransomware actors to exfiltrate data to Azure storage accounts.
Detection queries are available on the platform. Get full rules →