add ProcDump-based LSASS memory dump detection#1139
Open
akshat4703 wants to merge 3 commits intomandiant:masterfrom
Open
add ProcDump-based LSASS memory dump detection#1139akshat4703 wants to merge 3 commits intomandiant:masterfrom
akshat4703 wants to merge 3 commits intomandiant:masterfrom
Conversation
Collaborator
|
do you have an associated sample that you used to test/develop this rule? |
Contributor
Author
Yes, Added meta.examples from the sample I used during development: 91a12a4cf437589ba70b1687f5acad19:0x43E1C9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add a new nursery rule to detect LSASS memory dumping using ProcDump based on command execution patterns.
The rule identifies behavior where ProcDump is used to create a memory dump of the
lsassprocess, which is a common technique used by attackers to extract Windows credentials.What Changed
Added a new rule:
dump-lsass-memory-via-procdump.ymlThe rule matches when the following indicators appear together:
Process creation behavior
match: host-interaction/process/createProcDump execution indicator
procdumporprocdump64(with optional.exe)LSASS process target
lsassorlsass.exeDump-related arguments or output
-ma,-mm,-mp, or.dmpOptional command-line arguments supported:
-accepteulaRequiring multiple signals helps reduce false positives while capturing realistic attacker usage patterns.
Why
ProcDump is frequently abused as a LOLBin to dump memory from the LSASS (Local Security Authority Subsystem Service) process. Attackers can then extract credentials from the dump using tools such as Mimikatz.
This rule helps identify that behavior by matching common ProcDump command-line patterns targeting LSASS.
Example attacker command:
ATT&CK Mapping
Credential Access → OS Credential Dumping → LSASS Memory
MITRE ATT&CK: T1003.001
References
Validation
The rule was validated with the following checks:
Both checks passed successfully.