Skip to content
Merged
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
@@ -0,0 +1,31 @@
name: LSASS process clone creation via reflection
id: cdf3810a-4832-446a-ac9d-d108cf2e313c
version: 1.0.0
description: |
Identifies the creation of an LSASS clone process via RtlCreateProcessReflection API function.
Adversaries can use this technique to dump credentials material from the LSASS fork and evade
defenses.
labels:
tactic.id: TA0006
tactic.name: Credential Access
tactic.ref: https://attack.mitre.org/tactics/TA0006/
technique.id: T1003
technique.name: OS Credential Dumping
technique.ref: https://attack.mitre.org/techniques/T1003/
subtechnique.id: T1003.001
subtechnique.name: LSASS Memory
subtechnique.ref: https://attack.mitre.org/techniques/T1003/001/
references:
- https://github.com/Offensive-Panda/LsassReflectDumping
- https://s3cur3th1ssh1t.github.io/Reflective-Dump-Tools/

condition: >
spawn_process and ps.name ~= 'lsass.exe' and ps.child.name ~= 'lsass.exe'
and
thread.callstack.symbols imatches ('ntdll.dll!RtlCloneUserProcess', 'ntdll.dll!RtlCreateProcessReflection')
action:
- name: kill

severity: high

min-engine-version: 2.2.0