Files
blue-team-tools/rules/windows/powershell/powershell_suspicious_download.yml
T

27 lines
726 B
YAML
Raw Normal View History

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