SigmaHQ/rules/windows/powershell/powershell_suspicious_download.yml

28 lines
734 B
YAML
Raw Normal View History

2017-03-05 14:01:51 +00:00
title: Suspicious PowerShell Download
2019-11-12 22:12:27 +00:00
id: 65531a81-a694-4e31-ae04-f8ba5bc33759
2017-03-05 14:01:51 +00:00
status: experimental
description: Detects suspicious PowerShell download command
tags:
- attack.execution
- attack.t1086
2020-06-16 20:46:08 +00:00
- attack.t1059.001
2017-03-05 14:01:51 +00:00
author: Florian Roth
date: 2017/03/05
2020-03-25 13:36:34 +00:00
modified: 2020/03/25
2017-03-05 14:01:51 +00:00
logsource:
product: windows
service: powershell
2017-03-05 14:01:51 +00:00
detection:
2020-03-25 13:36:34 +00:00
downloadfile:
Message|contains|all:
- 'System.Net.WebClient'
- '.DownloadFile('
downloadstring:
Message|contains|all:
- 'System.Net.WebClient'
- '.DownloadString('
condition: downloadfile or downloadstring
2017-03-05 14:01:51 +00:00
falsepositives:
- PowerShell scripts that download content from the Internet
level: medium