mirror of
https://github.com/valitydev/SigmaHQ.git
synced 2024-11-07 09:48:58 +00:00
30 lines
682 B
YAML
30 lines
682 B
YAML
---
|
|
action: global
|
|
title: High DNS requests rate
|
|
description: High DNS requests amount from host per short period of time
|
|
status: experimental
|
|
author: Daniil Yugoslavskiy, oscd.community
|
|
date: 2019/10/24
|
|
tags:
|
|
- attack.exfiltration
|
|
- attack.t1048
|
|
falsepositives:
|
|
- Legitimate high DNS requests rate to domain name which should be added to whitelist
|
|
level: medium
|
|
---
|
|
logsource:
|
|
category: dns
|
|
detection:
|
|
selection:
|
|
query: '*'
|
|
timeframe: 1m
|
|
condition: selection | count() by src_ip > 1000
|
|
---
|
|
logsource:
|
|
category: firewall
|
|
detection:
|
|
selection:
|
|
dst_port: 53
|
|
timeframe: 1m
|
|
condition: selection | count() by src_ip > 1000
|