Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ description: |
This way we are also able to catch cases in which the attacker has renamed the procdump executable.
references:
- https://learn.microsoft.com/en-us/sysinternals/downloads/procdump
- https://research.splunk.com/endpoint/3742ebfe-64c2-11eb-ae93-0242ac130002
- https://x.com/wietze/status/1958302556033065292?s=12
author: Florian Roth (Nextron Systems)
date: 2018-10-30
modified: 2024-03-13
modified: 2025-08-21
tags:
- attack.defense-evasion
- attack.t1036
Expand All @@ -20,10 +22,16 @@ logsource:
product: windows
detection:
selection_flags:
CommandLine|contains|windash: ' -ma '
CommandLine|contains|windash:
- ' -ma '
- ' -mm ' # Mini dump
- ' -mp ' # Miniplus dump
selection_process:
CommandLine|contains: ' ls' # Short for lsass
condition: all of selection*
CommandLine|contains:
- ' ls' # Short for lsass
- ' keyiso'
- ' samss'
condition: 1 of selection_process and 1 of selection_flags
falsepositives:
- Unlikely, because no one should dump an lsass process memory
- Another tool that uses command line flags similar to ProcDump
Expand Down
Loading