Azure-Sentinel/Detections/InfobloxNIOS/PotentialDHCPStarvationAtta...

34 строки
1.0 KiB
YAML

id: 57e56fc9-417a-4f41-a579-5475aea7b8ce
name: Potential DHCP Starvation Attack
description: |
'This creates an incident in the event that an excessive amount of DHCPREQUEST have been recieved by a DHCP Server and could potentially be an indication of a DHCP Starvation Attack.'
severity: Medium
requiredDataConnectors:
- connectorId: InfobloxNIOS
dataTypes:
- Syslog
queryFrequency: 1h
queryPeriod: 1h
triggerOperator: gt
triggerThreshold: 0
tactics:
- InitialAccess
relevantTechniques:
- T1200
query: |
let threshold = 1000;
InfobloxNIOS
| where ProcessName =~ "dhcpd" and Log_Type =~ "DHCPREQUEST"
| summarize count() by ServerIP, bin(TimeGenerated,5m)
| where count_ > threshold
| join kind=inner (InfobloxNIOS
| where ProcessName =~ "dhcpd" and Log_Type =~ "DHCPREQUEST"
) on ServerIP
| extend timestamp = TimeGenerated, IPCustomEntity = ServerIP
entityMappings:
- entityType: IP
fieldMappings:
- identifier: Address
columnName: IPCustomEntity
version: 1.0.0