2019-01-16 22:36:31 +00:00
|
|
|
title: PowerShell Download from URL
|
2019-11-12 22:12:27 +00:00
|
|
|
id: 3b6ab547-8ec2-4991-b9d2-2b06702a48d7
|
2019-01-16 22:36:31 +00:00
|
|
|
status: experimental
|
|
|
|
description: Detects a Powershell process that contains download commands in its command line string
|
2020-11-27 19:10:10 +00:00
|
|
|
author: Florian Roth, oscd.community, Jonhnathan Ribeiro
|
2020-01-30 15:07:37 +00:00
|
|
|
date: 2019/01/16
|
2019-01-16 22:36:31 +00:00
|
|
|
tags:
|
2020-09-06 22:00:41 +00:00
|
|
|
- attack.t1086 # an old one
|
2019-03-01 23:14:20 +00:00
|
|
|
- attack.execution
|
2020-06-16 20:46:08 +00:00
|
|
|
- attack.t1059.001
|
2019-01-16 22:36:31 +00:00
|
|
|
logsource:
|
2019-03-01 23:14:20 +00:00
|
|
|
category: process_creation
|
|
|
|
product: windows
|
2019-01-16 22:36:31 +00:00
|
|
|
detection:
|
2019-03-01 23:14:20 +00:00
|
|
|
selection:
|
2020-10-15 21:21:32 +00:00
|
|
|
Image|endswith: '\powershell.exe'
|
2020-11-28 09:37:30 +00:00
|
|
|
CommandLine|contains|all:
|
|
|
|
- 'new-object'
|
|
|
|
- 'net.webclient).'
|
|
|
|
- 'download'
|
|
|
|
CommandLine|contains:
|
|
|
|
- 'string('
|
|
|
|
- 'file('
|
|
|
|
condition: selection
|
2019-01-16 22:36:31 +00:00
|
|
|
fields:
|
2019-03-01 23:14:20 +00:00
|
|
|
- CommandLine
|
|
|
|
- ParentCommandLine
|
2019-01-16 22:36:31 +00:00
|
|
|
falsepositives:
|
2019-03-01 23:14:20 +00:00
|
|
|
- unknown
|
2019-01-16 22:36:31 +00:00
|
|
|
level: medium
|