Tomcat - Multiple client errors from single IP address
| Id | 4fa66058-4870-11ec-81d3-0242ac130003 |
| Rulename | Tomcat - Multiple client errors from single IP address |
| Description | Detects multiple client errors from one source in short timeframe |
| Severity | Medium |
| Tactics | InitialAccess |
| Techniques | T1190 T1133 |
| Required data connectors | CustomLogsAma |
| Kind | Scheduled |
| Query frequency | 1h |
| Query period | 1h |
| Trigger threshold | 0 |
| Trigger operator | gt |
| Source Uri | https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Tomcat/Analytic Rules/TomcatMultipleClientErrorsFromSingleIP.yaml |
| Version | 1.0.2 |
| Arm template | 4fa66058-4870-11ec-81d3-0242ac130003.json |
let threshold = 100;
TomcatEvent
| where HttpStatusCode >= 400 and HttpStatusCode <= 499
| summarize MultipleClientErrors = count() by SrcIpAddr, bin(TimeGenerated, 5m)
| where MultipleClientErrors > threshold
| extend IPCustomEntity = SrcIpAddr
name: Tomcat - Multiple client errors from single IP address
id: 4fa66058-4870-11ec-81d3-0242ac130003
description: |
'Detects multiple client errors from one source in short timeframe'
triggerThreshold: 0
entityMappings:
- fieldMappings:
- columnName: IPCustomEntity
identifier: Address
entityType: IP
version: 1.0.2
triggerOperator: gt
query: |
let threshold = 100;
TomcatEvent
| where HttpStatusCode >= 400 and HttpStatusCode <= 499
| summarize MultipleClientErrors = count() by SrcIpAddr, bin(TimeGenerated, 5m)
| where MultipleClientErrors > threshold
| extend IPCustomEntity = SrcIpAddr
tactics:
- InitialAccess
kind: Scheduled
queryFrequency: 1h
severity: Medium
queryPeriod: 1h
requiredDataConnectors:
- datatypes:
- Tomcat_CL
connectorId: CustomLogsAma
status: Available
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Tomcat/Analytic Rules/TomcatMultipleClientErrorsFromSingleIP.yaml
relevantTechniques:
- T1190
- T1133