Skip to content

Commit e9e39aa

Browse files
committed
fix(rules): Reduce Suspicious LSASS process access FPs
1 parent 384bb2c commit e9e39aa

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

rules/credential_access_suspicious_lsass_process_access.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Suspicious LSASS process access
22
id: 40e59763-62c6-4ae7-8c8a-5d4167d3b4e9
3-
version: 1.0.0
3+
version: 1.0.1
44
description: |
55
Identifies processes requesting high-privilege access to the
66
Local Security Authority Subsystem Service (LSASS) process
@@ -35,12 +35,15 @@ condition: >
3535
'?:\\Windows\\system32\\MRT.exe',
3636
'?:\\Windows\\System32\\wininit.exe',
3737
'?:\\Windows\\System32\\services.exe',
38+
'?:\\WINDOWS\\System32\\taskhostw.exe',
3839
'?:\\Windows\\Sysmon.exe',
3940
'?:\\Windows\\Sysmon64.exe',
4041
'?:\\Windows\\System32\\msiexec.exe',
4142
'?:\\Windows\\system32\\wbem\\wmiprvse.exe',
4243
'?:\\ProgramData\\Microsoft\\Windows Defender\\*\\MsMpEng.exe'
43-
)
44+
) and
45+
not (ps.exe imatches '?:\\Windows\\System32\\lsass.exe' and ps.parent.exe imatches '?:\\Windows\\System32\\wininit.exe') and
46+
not (thread.callstack.final_user_module.signature.trusted = true and thread.callstack.final_user_module.signature.subject imatches '*Microsoft Corporation*' and thread.callstack.modules not imatches ('*dbgcore.dll', '*comsvcs.dll'))
4447
4548
severity: high
4649

0 commit comments

Comments
 (0)