T1063 add

This commit is contained in:
System Administrator
2018-05-25 07:20:21 -04:00
parent fec12ab48c
commit d470878024
+35
View File
@@ -0,0 +1,35 @@
---
attack_technique: T1063
display_name: Security Software Discovery
atomic_tests:
- name: Security Software Discovery
description: |
Methods to identify Security Software on an endpoint
supported_platforms:
- windows
executor:
name: command_prompt
command: |
netsh.exe advfirewall firewall show all profiles
tasklist.exe
tasklist.exe | findstr virus
tasklist.exe | findstr cb
tasklist.exe | findstr defender
atomic_tests:
- name: Security Software Discovery - powershell
description: |
Methods to identify Security Software on an endpoint
supported_platforms:
- windows
executor:
name: powershell
command: |
powershell.exe get-process | ?{$_.Description -like "*virus*"}
powershell.exe get-process | ?{$_.Description -like "*carbonblack*"}
powershell.exe get-process | ?{$_.Description -like "*defender*"}