mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 17:58:52 +00:00
33 lines
949 B
YAML
33 lines
949 B
YAML
title: Suspicious PowerShell Invocation Based on Parent Process
|
|
id: 95eadcb2-92e4-4ed1-9031-92547773a6db
|
|
status: experimental
|
|
description: Detects suspicious powershell invocations from interpreters or unusual programs
|
|
author: Florian Roth
|
|
date: 2019/01/16
|
|
references:
|
|
- https://www.carbonblack.com/2017/03/15/attackers-leverage-excel-powershell-dns-latest-non-malware-attack/
|
|
tags:
|
|
- attack.execution
|
|
- attack.t1059.001
|
|
- attack.t1086 # an old one
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
selection:
|
|
ParentImage:
|
|
- '*\wscript.exe'
|
|
- '*\cscript.exe'
|
|
Image:
|
|
- '*\powershell.exe'
|
|
falsepositive:
|
|
CurrentDirectory: '*\Health Service State\\*'
|
|
condition: selection and not falsepositive
|
|
fields:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
falsepositives:
|
|
- Microsoft Operations Manager (MOM)
|
|
- Other scripts
|
|
level: medium
|