Skip to content

feat(rules): New LSASS process clone creation via reflection rule #486

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 13, 2025
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