A process used \\.\PHYSICALDRIVE0 or similar raw disk access. Image and Device are key.
Raw disk access for credential harvesting (reading NTDS.dit or SAM hive directly from disk, bypassing file locks). Tools: NTDSUtil, vssadmin, certain data recovery tools. Ransomware may use raw disk access for encryption. Also used by disk forensic tools.
Alert: Image is not a known backup or forensic tool. Alert: Device is a drive letter or physical disk. Cross-reference with 4663 file access events.
ImageCommandLineParentImageUserHashes | Tactic | Technique |
|---|---|
| Credential Access | NTDS (T1003.003) |
Starting points — adapt the log source, projected fields and thresholds for your environment.
title: Suspicious Raw Disk Read
status: experimental
description: Raw disk access from unexpected process
author: theadminstack.com
date: 2026/05/16
logsource:
category: raw_access_read
product: windows
detection:
selection:
EventID: 9
filter_legit:
Image|contains:
- 'backup'
- 'vss'
- 'dfsr'
condition: selection and not filter_legit
falsepositives:
- Disk backup software
- Forensic tools
level: high
tags:
- attack.credential_access
- attack.t1003.003
Event
| where EventLog == "Microsoft-Windows-Sysmon/Operational" and EventID == 9 // RawAccessRead detected
// EventData holds: Image, CommandLine, ParentImage, User, Hashes
| project TimeGenerated, Computer, RenderedDescription
| sort by TimeGenerated desc
index=* sourcetype="WinEventLog:Microsoft-Windows-Sysmon/Operational" EventCode=9
| stats count earliest(_time) as first_seen latest(_time) as last_seen by ComputerName
| sort - count `# RawAccessRead detected — add EventData fields: Image, CommandLine, ParentImage, User`
RawAccessRead detected. A process used \\.\PHYSICALDRIVE0 or similar raw disk access. Image and Device are key.
Event 9 is written to the Microsoft-Windows-Sysmon/Operational channel by Microsoft-Windows-Sysmon. Requires Sysmon installed with a config that logs this event (e.g. SwiftOnSecurity / Olaf Hartong).
Event 9 is associated with: NTDS (T1003.003).
Alert: Image is not a known backup or forensic tool. Alert: Device is a drive letter or physical disk. Cross-reference with 4663 file access events.