Live Memory Dump Using Powershell

Detects usage of a PowerShell command to dump the live memory of a Windows machine

Sigma rule (View on GitHub)

 1title: Live Memory Dump Using Powershell
 2id: cd185561-4760-45d6-a63e-a51325112cae
 3status: test
 4description: Detects usage of a PowerShell command to dump the live memory of a Windows machine
 5references:
 6    - https://learn.microsoft.com/en-us/powershell/module/storage/get-storagediagnosticinfo?view=windowsserver2022-ps
 7author: Max Altgelt (Nextron Systems)
 8date: 2021-09-21
 9modified: 2022-12-25
10tags:
11    - attack.credential-access
12    - attack.t1003
13logsource:
14    product: windows
15    category: ps_script
16    definition: 'Requirements: Script Block Logging must be enabled'
17detection:
18    selection:
19        ScriptBlockText|contains|all:
20            - 'Get-StorageDiagnosticInfo'
21            - '-IncludeLiveDump'
22    condition: selection
23falsepositives:
24    - Diagnostics
25level: high

References

Related rules

to-top