Files
blue-team-tools/rules/windows/process_creation/proc_creation_win_powershell_download.yml
T

31 lines
722 B
YAML
Raw Normal View History

title: PowerShell Download from URL
2019-11-12 23:12:27 +01:00
id: 3b6ab547-8ec2-4991-b9d2-2b06702a48d7
2021-11-27 11:33:14 +01:00
status: test
description: Detects a Powershell process that contains download commands in its command line string
2020-11-27 16:10:10 -03:00
author: Florian Roth, oscd.community, Jonhnathan Ribeiro
date: 2019/01/16
2021-11-27 11:33:14 +01:00
modified: 2021/11/27
logsource:
2021-11-27 11:33:14 +01:00
category: process_creation
product: windows
detection:
2021-11-27 11:33:14 +01:00
selection:
Image|endswith: '\powershell.exe'
CommandLine|contains|all:
- 'new-object'
- 'net.webclient).'
- 'download'
CommandLine|contains:
- 'string('
- 'file('
condition: selection
fields:
2021-11-27 11:33:14 +01:00
- CommandLine
- ParentCommandLine
falsepositives:
2022-03-16 13:43:54 +01:00
- Unknown
level: medium
2021-11-27 11:33:14 +01:00
tags:
- attack.execution
- attack.t1059.001