Merge pull request #1086 from remotephone/oscd
[OSCD] T1016 - linux/macOS firewall enumeration
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
title: System Network Discovery - Linux
|
||||
id: e7bd1cfa-b446-4c88-8afb-403bcd79e3fa
|
||||
status: experimental
|
||||
description: Detects enumeration of local network configuration
|
||||
author: Ömer Günal and remotephone, oscd.community
|
||||
date: 2020/10/06
|
||||
references:
|
||||
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1016/T1016.md
|
||||
logsource:
|
||||
category: process_creation
|
||||
product: unix
|
||||
detection:
|
||||
selection1:
|
||||
ProcessName|endswith:
|
||||
- '/firewall-cmd'
|
||||
- '/ufw'
|
||||
- '/iptables'
|
||||
- '/netstat'
|
||||
- '/ss'
|
||||
- '/ip'
|
||||
- '/ifconfig'
|
||||
- '/systemd-resolve'
|
||||
- '/route'
|
||||
selection2:
|
||||
CommandLine|contains: '/etc/resolv.conf'
|
||||
condition: selection1 or selection2
|
||||
falsepositives:
|
||||
- Legitimate administration activities
|
||||
level: low
|
||||
tags:
|
||||
- attack.discovery
|
||||
- attack.t1016
|
||||
@@ -0,0 +1,32 @@
|
||||
title: System Network Discovery - macOS
|
||||
id: 58800443-f9fc-4d55-ae0c-98a3966dfb97
|
||||
status: experimental
|
||||
description: Detects enumeration of local network configuration
|
||||
author: remotephone, oscd.community
|
||||
date: 2020/10/06
|
||||
references:
|
||||
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1016/T1016.md
|
||||
logsource:
|
||||
product: macos
|
||||
category: process_creation
|
||||
detection:
|
||||
selection1:
|
||||
ProcessName:
|
||||
- '/usr/sbin/netstat'
|
||||
- '/sbin/ifconfig'
|
||||
- '/usr/sbin/ipconfig'
|
||||
- '/usr/libexec/ApplicationFirewall/socketfilterfw'
|
||||
- '/usr/sbin/networksetup'
|
||||
- '/usr/sbin/arp'
|
||||
selection2:
|
||||
ProcessName: '/usr/bin/defaults'
|
||||
Commandline|contains|all:
|
||||
- 'read'
|
||||
- '/Library/Preferences/com.apple.alf'
|
||||
condition: selection1 or selection2
|
||||
falsepositives:
|
||||
- Legitimate administration activities
|
||||
level: low
|
||||
tags:
|
||||
- attack.discovery
|
||||
- attack.t1016
|
||||
Reference in New Issue
Block a user