-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mimikatz Lsass Access for Credential Dumping
- Loading branch information
1 parent
2c24b24
commit 07ace33
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
rules/windows/process_access/proc_access_win_lsass_access_mimikatz.yml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
title: Mimikatz Lsass Access for Credential Dumping | ||
id: d0d2f720-d14f-448d-8242-51ff396a334e | ||
status: experimental | ||
description: Detects LSASS process access by mimikatz for credential dumping. | ||
references: | ||
- https://jsecurity101.medium.com/bypassing-access-mask-auditing-strategies-480fb641c158 | ||
- https://www.splunk.com/en_us/blog/security/you-bet-your-lsass-hunting-lsass-access.html | ||
author: Swachchhanda Shrawan Poudel | ||
date: 2023/11/24 | ||
tags: | ||
- attack.credential_access | ||
- attack.t1003.001 | ||
- attack.s0002 | ||
logsource: | ||
category: process_access | ||
product: windows | ||
detection: | ||
selection: | ||
SourceImage|endswith: '\mimikatz.exe' | ||
TargetImage|endswith: '\lsass.exe' | ||
GrantedAccess: | ||
- '0x1FFFFF' | ||
- '0x1010' | ||
- '0x40' | ||
condition: selection | ||
falsepositives: | ||
- Unknown | ||
level: critical |