SigmaHQ/rules/linux/lnx_network_service_scanning.yml

31 lines
977 B
YAML
Raw Normal View History

title: Linux Network Service Scanning
id: 3e102cd9-a70d-4a7a-9508-403963092f31
status: experimental
description: Detects enumeration of local or remote network services.
author: Alejandro Ortuno, oscd.community
date: 2020/10/21
modified: 2021/09/14
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1046/T1046.md
2020-11-06 08:56:49 +00:00
tags:
- attack.discovery
- attack.t1046
logsource:
category: process_creation
2020-10-21 08:13:28 +00:00
product: linux
2020-11-09 09:32:56 +00:00
definition: 'Detect netcat and filter our listening mode'
detection:
netcat:
Image|endswith:
- '/nc'
2020-11-06 08:56:49 +00:00
- '/netcat'
network_scanning_tools:
Image|endswith:
- '/telnet' # could be wget, curl, ssh, many things. basically everything that is able to do network connection. consider fine tuning
- '/nmap'
netcat_listen_flag:
2020-11-09 09:32:56 +00:00
CommandLine|contains: 'l'
condition: (netcat and not netcat_listen_flag) or network_scanning_tools
falsepositives:
- Legitimate administration activities
level: low