mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-06 17:35:19 +00:00
34 lines
748 B
YAML
34 lines
748 B
YAML
action: global
|
|
title: Network Scans
|
|
id: fab0ddf0-b8a9-4d70-91ce-a20547209afb
|
|
status: experimental
|
|
description: Detects many failed connection attempts to different ports or hosts
|
|
author: Thomas Patzke
|
|
date: 2017/02/19
|
|
modified: 2020/08/27
|
|
logsource:
|
|
category: firewall
|
|
fields:
|
|
- src_ip
|
|
- dst_ip
|
|
- dst_port
|
|
falsepositives:
|
|
- Inventarization systems
|
|
- Vulnerability scans
|
|
- Penetration testing activity
|
|
level: medium
|
|
tags:
|
|
- attack.discovery
|
|
- attack.t1046
|
|
---
|
|
detection:
|
|
selection:
|
|
action: denied
|
|
timeframe: 24h
|
|
condition: selection | count(dst_port) by src_ip > 10
|
|
---
|
|
detection:
|
|
selection:
|
|
action: denied
|
|
timeframe: 24h
|
|
condition: selection | count(dst_ip) by src_ip > 10 |