Has executed the Windows-native vssadmin command to create volume shadow copies.1
Direct Volume Access T1006
- Tactic
- Stealth
- Platforms
- Network Devices, Windows
- Version
- 3.0
- Created
- 31 May 2017
- Last modified
- 12 May 2026
- Contributor
- Tom Simpson, CrowdStrike Falcon OverWatch
Adversaries may directly access a volume to bypass file access controls and file system monitoring. Windows allows programs to have direct access to logical volumes. Programs with direct access may read and write files directly from the drive by analyzing file system data structures. This technique may bypass Windows file access controls as well as file system monitoring tools.[1]
Direct Volume Access MITRE reference T1006
2 groups have been recorded using this technique. Newest first; each entry carries MITRE’s procedure text and a link to the group’s full record. Click a name to filter the rules below.
Has created volume shadow copies of virtual domain controller disks to extract the NTDS.dit file.1
All 2 groups for this technique
2 campaigns have been recorded using this technique. Listed newest first; dates are year-granularity and attribution is MITRE’s.
During the 2025 Poland Wiper Attacks, the adversaries copied volume shadow copies through executing vssadmin in order to dump the NTDS.dit file.1
During APT28 Nearest Neighbor Campaign, APT28 accessed volume shadow copies through executing vssadmin in order to dump the NTDS.dit file.1
All 2 campaigns for this technique
Offense vs defense T1006
Is defensive coverage keeping up with adversary use? Eight counts, each ranked against all 697 ATT&CK techniques. Attack sits left, defense right, so a shape leaning left means adversaries are better documented here than defenders are equipped. Hover any spoke for its percentile and the share of techniques that have more. The timeline below shows when each side arrived.
How it got here
Adversary activity (campaign spans) over cumulative rule output. Each source is plotted independently from zero, so neither line includes the other. Campaign dates are year-granularity.
Direct Volume Access detection strategy DET0426
MITRE names one behaviour worth catching for this technique and breaks it into 2 analytics, one per platform. Each carries the log sources it needs and the fields you tune per environment.
Detection of Direct Volume Access for File System Evasion
AN1193 · Windows
Processes accessing raw logical drives (e.g., \.\C:) to bypass file system protections or directly manipulate data structures.
Log sources
The data this analytic draws on. You do not need every component — each one you already collect covers part of it. Each links to its ATT&CK record.
| Data component | Name | Channel |
|---|---|---|
| Process CreationDC0032 | WinEventLog:Security | EventCode=4688 |
| Process AccessDC0035 | WinEventLog:Sysmon | EventCode=10 |
Tunable fields
MITRE calls these the analytic’s mutable elements: the thresholds and filters you set for your own environment.
| Field | What you tune |
|---|---|
| TargetObjectPattern | Regex pattern to detect access to raw disk volumes like \Device\HarddiskVolume or \.\PhysicalDrive*. |
| ParentProcess | Tune for known tools/scripts (e.g., powershell.exe, cmd.exe) often used in misuse scenarios. |
| TimeWindow | Correlate file access and creation across a short time window to avoid false positives. |
AN1194 · Network Devices
CLI or automated utilities accessing raw device volumes or flash storage directly (e.g., via copy flash:, format, or partition commands).
Log sources
The data this analytic draws on. You do not need every component — each one you already collect covers part of it. Each links to its ATT&CK record.
| Data component | Name | Channel |
|---|---|---|
| Command ExecutionDC0064 | networkdevice:cli | command logging |
Tunable fields
MITRE calls these the analytic’s mutable elements: the thresholds and filters you set for your own environment.
| Field | What you tune |
|---|---|
| CommandScope | Limit detection to volume-level commands (e.g., format, copy, mount, erase). |
| DeviceTypeFilter | Filter by internal vs. removable volume interactions (e.g., flash, SD card). |
Some endpoint security solutions can be configured to block some types of behaviors related to efforts by an adversary to create backups, such as command execution or preventing API calls to backup related services.
Ensure only accounts required to configure and manage backups have the privileges to do so. Monitor these accounts for unauthorized backup activity.
| # | Test | Platform | Executor | Elevation | Prereqs | Cleanup | Ref | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 01 | Read volume boot sector via DOS device path (PowerShell) | windows | PowerShell | Required | — | — | ||||||||||
This test uses PowerShell to open a handle on the drive volume via the Input arguments
Attack command $buffer = New-Object byte[] 11
$handle = New-Object IO.FileStream "\\.\#{volume}", 'Open', 'Read', 'ReadWrite'
$handle.Read($buffer, 0, $buffer.Length)
$handle.Close()
Format-Hex -InputObject $buffer
GUID2a8f3beb-3dab-41dd-905f-14873a095201 | ||||||||||||||||
Tests from Atomic Red Team (MIT licence) · technique definition