Files
blue-team-tools/rules/windows/process_access/process_access_win_susp_seclogon.yml
T
Nasreddine Bencherchali c95df56222 New Rules
2022-07-01 16:56:45 +01:00

27 lines
995 B
YAML

title: Suspicious LSASS Access Via MalSecLogon
id: 472159c5-31b9-4f56-b794-b766faa8b0a7
status: experimental
description: Detects suspicious access to Lsass handle via a call trace to "seclogon.dll"
author: Samir Bousseaden (original elastic rule), Nasreddine Bencherchali (sigma)
references:
- https://twitter.com/SBousseaden/status/1541920424635912196
- https://github.com/elastic/detection-rules/blob/2bc1795f3d7bcc3946452eb4f07ae799a756d94e/rules/windows/credential_access_lsass_handle_via_malseclogon.toml
- https://splintercod3.blogspot.com/p/the-hidden-side-of-seclogon-part-3.html
date: 2022/06/29
logsource:
category: process_access
product: windows
detection:
selection:
TargetImage|endswith: '\lsass.exe'
SourceImage|endswith: '\svchost.exe'
GrantedAccess: '0x14c0'
CallTrace|contains: 'seclogon.dll'
condition: selection
falsepositives:
- Unknown
level: high
tags:
- attack.credential_access
- attack.t1003.001