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

27 lines
781 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
status: experimental
description: Detects a Powershell process that contains download commands in its command line string
author: Florian Roth
tags:
2019-03-02 00:14:20 +01:00
- attack.t1086
- attack.execution
logsource:
2019-03-02 00:14:20 +01:00
category: process_creation
product: windows
detection:
2019-03-02 00:14:20 +01:00
selection:
Image: '*\powershell.exe'
CommandLine:
- '*new-object system.net.webclient).downloadstring(*'
- '*new-object system.net.webclient).downloadfile(*'
- '*new-object net.webclient).downloadstring(*'
- '*new-object net.webclient).downloadfile(*'
condition: selection
fields:
2019-03-02 00:14:20 +01:00
- CommandLine
- ParentCommandLine
falsepositives:
2019-03-02 00:14:20 +01:00
- unknown
level: medium