SigmaHQ/rules/windows/builtin/win_susp_powershell_enc_cmd.yml

44 lines
1.1 KiB
YAML
Raw Normal View History

2018-09-03 08:08:29 +00:00
---
action: global
title: Suspicious Encoded PowerShell Command Line
description: Detects suspicious powershell process starts with base64 encoded commands
status: experimental
references:
- https://app.any.run/tasks/6217d77d-3189-4db2-a957-8ab239f3e01e
author: Florian Roth
date: 2018/09/03
detection:
selection:
CommandLine:
# Command starts with '$' symbol
- '* -e JAB*'
- '* -enc JAB*'
- '* -encodedcommand JAB*'
2018-09-03 10:02:42 +00:00
# Google Rapid Response
falsepositive1:
ImagePath: '*\GRR\*'
# PowerSponse deployments
falsepositive2:
CommandLine: '* -ExecutionPolicy remotesigned *'
condition: selection and not 1 of falsepositive*
2018-09-03 08:08:29 +00:00
falsepositives:
2018-09-03 09:50:34 +00:00
- GRR powershell hacks
2018-09-03 10:02:42 +00:00
- PowerSponse Deployments
2018-09-03 08:08:29 +00:00
level: high
---
logsource:
product: windows
service: sysmon
detection:
selection:
EventID: 1
---
logsource:
product: windows
service: security
definition: 'Requirements: Audit Policy : Detailed Tracking > Audit Process creation, Group Policy : Administrative Templates\System\Audit Process Creation'
2018-09-03 08:08:29 +00:00
detection:
selection:
EventID: 4688
2018-09-03 09:50:34 +00:00