Files
blue-team-tools/rules/windows/powershell/powershell_script/powershell_suspicious_getprocess_lsass.yml
T

25 lines
836 B
YAML
Raw Normal View History

2021-04-23 16:44:53 +02:00
title: PowerShell Get-Process LSASS in ScriptBlock
id: 84c174ab-d3ef-481f-9c86-a50d0b8e3edb
status: experimental
description: Detects a Get-Process command on lsass process, which is in almost all cases a sign of malicious activity
references:
- https://twitter.com/PythonResponder/status/1385064506049630211
tags:
- attack.credential_access
- attack.t1003.001
2021-04-23 16:44:53 +02:00
author: Florian Roth
date: 2021/04/23
2021-08-04 14:49:50 +02:00
modified: 2021/08/04
2021-04-23 16:44:53 +02:00
logsource:
product: windows
service: powershell
2021-08-21 09:50:59 +02:00
definition: Script Block Logging must be enable
2021-04-23 16:44:53 +02:00
detection:
2021-08-21 09:50:59 +02:00
select_LSASS:
2021-04-23 16:44:53 +02:00
EventID: 4104
2021-08-04 14:49:50 +02:00
ScriptBlockText|contains: 'Get-Process lsass'
2021-08-21 09:50:59 +02:00
condition: select_LSASS
2021-04-23 16:44:53 +02:00
falsepositives:
- Legitimate certificate exports invoked by administrators or users (depends on processes in the environment - filter if unusable)
level: high