Merge pull request #288 from swelcher/T1049
Added T1049 System Network Connections Discovery
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
---
|
||||
attack_technique: T1049
|
||||
display_name: System Network Connections Discovery
|
||||
|
||||
atomic_tests:
|
||||
- name: System Network Connections Discovery
|
||||
description: |
|
||||
Get a listing of network connections.
|
||||
|
||||
supported_platforms:
|
||||
- windows
|
||||
|
||||
executor:
|
||||
name: command_prompt
|
||||
command: |
|
||||
netstat
|
||||
net use
|
||||
net sessions
|
||||
|
||||
- name: System Network Connections Discovery with PowerShell
|
||||
description: |
|
||||
Get a listing of network connections.
|
||||
|
||||
supported_platforms:
|
||||
- windows
|
||||
|
||||
executor:
|
||||
name: powershell
|
||||
command: |
|
||||
Get-NetTCPConnection
|
||||
|
||||
- name: System Network Connections Discovery Linux & MacOS
|
||||
description: |
|
||||
Get a listing of network connections.
|
||||
|
||||
supported_platforms:
|
||||
- linux
|
||||
- macos
|
||||
|
||||
executor:
|
||||
name: sh
|
||||
command: |
|
||||
netstat
|
||||
who -a
|
||||
Reference in New Issue
Block a user