SigmaHQ/rules/linux/macos_network_service_scanning.yml

30 lines
752 B
YAML
Raw Normal View History

title: MacOS Network Service Scanning
id: 84bae5d4-b518-4ae0-b331-6d4afd34d00f
status: experimental
description: Detects enumeration of local or remote network services.
author: Alejandro Ortuno, oscd.community
date: 2020/10/21
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1046/T1046.md
logsource:
category: process_creation
product: macos
detection:
2020-11-09 09:32:56 +00:00
selection_1:
ProcessName|endswith:
- '/nc'
2020-11-06 08:56:49 +00:00
- '/netcat'
2020-11-09 09:32:56 +00:00
selection_2:
ProcessName|endswith:
- '/nmap'
- '/telnet'
filter:
CommandLine|contains: 'l'
condition: (selection_1 and not filter) or selection_2
falsepositives:
- Legitimate administration activities
2020-11-09 09:32:56 +00:00
level: low
tags:
- attack.discovery
- attack.t1046