SigmaHQ/rules/linux/lnx_network_service_scanning.yml

49 lines
1.3 KiB
YAML
Raw Normal View History

2020-11-06 08:56:49 +00:00
action: global
title: Linux Network Service Scanning
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
2020-11-06 08:56:49 +00:00
falsepositives:
- Legitimate administration activities
2020-11-09 09:32:56 +00:00
level: low
2020-11-06 08:56:49 +00:00
tags:
- attack.discovery
- attack.t1046
---
2021-09-02 18:07:03 +00:00
id: 3e102cd9-a70d-4a7a-9508-403963092f31
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
2020-11-06 08:56:49 +00:00
---
2021-09-02 18:07:03 +00:00
id: 3761e026-f259-44e6-8826-719ed8079408
2020-11-06 08:56:49 +00:00
logsource:
product: linux
service: auditd
definition: 'Configure these rules https://github.com/Neo23x0/auditd/blob/master/audit.rules#L182-L183'
detection:
selection:
type: 'SYSCALL'
exe|endswith:
- '/telnet'
- '/nmap'
- '/netcat'
- '/nc'
2020-11-06 08:56:49 +00:00
key: 'network_connect_4'
2020-11-02 21:57:01 +00:00
condition: selection