1bfefdacfc
* provide elevation_required attribute * provide elevation_required attribute * provide elevation_required attribute
38 lines
755 B
YAML
38 lines
755 B
YAML
---
|
|
attack_technique: T1016
|
|
display_name: System Network Configuration Discovery
|
|
|
|
atomic_tests:
|
|
- name: System Network Configuration Discovery
|
|
description: |
|
|
Identify network configuration information
|
|
|
|
supported_platforms:
|
|
- windows
|
|
|
|
executor:
|
|
name: command_prompt
|
|
elevation_required: false
|
|
command: |
|
|
ipconfig /all
|
|
netsh interface show
|
|
arp -a
|
|
nbtstat -n
|
|
net config
|
|
|
|
- name: System Network Configuration Discovery
|
|
description: |
|
|
Identify network configuration information
|
|
|
|
supported_platforms:
|
|
- macos
|
|
- linux
|
|
|
|
executor:
|
|
name: sh
|
|
elevation_required: false
|
|
command: |
|
|
arp -a
|
|
netstat -ant | awk '{print $NF}' | grep -v '[a-z]' | sort | uniq -c
|
|
ifconfig
|