mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-08 02:08:54 +00:00
7602309138
* Converted (to generic sigma) rules * Converter outputs by default with indentation 4
26 lines
740 B
YAML
26 lines
740 B
YAML
title: PowerShell Download from URL
|
|
status: experimental
|
|
description: Detects a Powershell process that contains download commands in its command line string
|
|
author: Florian Roth
|
|
tags:
|
|
- attack.t1086
|
|
- attack.execution
|
|
logsource:
|
|
category: process_creation
|
|
product: windows
|
|
detection:
|
|
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:
|
|
- CommandLine
|
|
- ParentCommandLine
|
|
falsepositives:
|
|
- unknown
|
|
level: medium
|