2017-03-02 10:06:53 +00:00
|
|
|
title: PowerShell Download from URL
|
|
|
|
status: experimental
|
2018-07-09 17:02:42 +00:00
|
|
|
description: Detects a Powershell process that contains download commands in its command line string
|
2017-03-02 10:06:53 +00:00
|
|
|
author: Florian Roth
|
2018-07-27 04:15:07 +00:00
|
|
|
tags:
|
|
|
|
- attack.t1086
|
|
|
|
- attack.execution
|
2017-03-02 10:06:53 +00:00
|
|
|
logsource:
|
2017-03-13 08:23:08 +00:00
|
|
|
product: windows
|
|
|
|
service: sysmon
|
2017-03-02 10:06:53 +00:00
|
|
|
detection:
|
|
|
|
selection:
|
|
|
|
EventID: 1
|
|
|
|
Image: '*\powershell.exe'
|
|
|
|
CommandLine:
|
|
|
|
- '*new-object system.net.webclient).downloadstring(*'
|
|
|
|
- '*new-object system.net.webclient).downloadfile(*'
|
2019-02-08 02:25:04 +00:00
|
|
|
- '*new-object net.webclient).downloadstring(*' # Ex. https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1086/T1086.md#atomic-test-2---bloodhound
|
|
|
|
- '*new-object net.webclient).downloadfile(*' # Ex. https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1086/T1086.md#atomic-test-3---obfuscation-tests
|
|
|
|
|
2017-03-02 10:06:53 +00:00
|
|
|
condition: selection
|
2017-09-12 21:54:04 +00:00
|
|
|
fields:
|
|
|
|
- CommandLine
|
|
|
|
- ParentCommandLine
|
2017-03-02 10:06:53 +00:00
|
|
|
falsepositives:
|
|
|
|
- unknown
|
|
|
|
level: medium
|
|
|
|
|