Windows redcannary

This commit is contained in:
frack113
2021-12-16 10:32:45 +01:00
parent 177c80993b
commit d7e9dccdbe
2 changed files with 56 additions and 0 deletions
@@ -0,0 +1,34 @@
title: Security Software Discovery by Powershell
id: 904e8e61-8edf-4350-b59c-b905fc8e810c
status: experimental
author: frack113
date: 2021/12/16
description: |
Adversaries may attempt to get a listing of security software, configurations, defensive tools, and sensors that are installed on a system or in a cloud environment.
This may include things such as firewall rules and anti-viru
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1518.001/T1518.001.md
logsource:
product: windows
category: ps_script
definition: Script block logging must be enabled
detection:
selection_1:
ScriptBlockText|contains|all:
- 'get-process'
- '.Description'
- '-like'
selection_2:
ScriptBlockText|contains:
- '"*virus*"'
- '"*carbonblack*"'
- '"*defender*"'
- '"*cylance*"'
condition: all of selection_*
falsepositives:
- Unknown
level: low
tags:
- attack.discovery
- attack.t1518.001