Detection rules › Kusto
API - Kiterunner detection
'42Crunch API protection against Kiterunner enumeration'
MITRE ATT&CK coverage
| Tactic | Techniques |
|---|---|
| Reconnaissance | |
| Discovery |
Rule body
id: 421b38ec-4295-4aed-8299-c92e268ad663
name: API - Kiterunner detection
description: |
'42Crunch API protection against Kiterunner enumeration'
severity: Medium
requiredDataConnectors:
- connectorId: 42CrunchAPIProtection
dataTypes:
- FortyTwoCrunchAPIProtection
- connectorId: FortyTwoCrunchAPIProtection
dataTypes:
- FortyTwoCrunchAPIProtection
queryFrequency: 5m
queryPeriod: 5m
triggerOperator: gt
triggerThreshold: 0
eventGroupingSettings:
aggregationKind: SingleAlert
status: Available
tactics:
- Reconnaissance
- Discovery
relevantTechniques:
- T1595
- T1580
- T1083
query: |
let discoveryRecords = FortyTwoCrunchAPIProtection
| where TimeGenerated >= ago(5m)
| project-away NonBlockingMode, SourcePort, DestinationPort, Query, ApiId, RequestHeader, ResponseHeader, Errors, EventType, Uuid
| where Status == 404 and ErrorMessage startswith "path not defined in OAS";
let discoveryCnt = (toscalar(discoveryRecords | count));
let recCount = iff((discoveryCnt > 500), 1, 0);
discoveryRecords | top recCount by Timestamp desc
customDetails:
entityMappings:
- entityType: IP
fieldMappings:
- identifier: Address
columnName: SourceIp
- entityType: Host
fieldMappings:
- identifier: HostName
columnName: Hostname
- entityType: Account
fieldMappings:
- identifier: FullName
columnName: InstanceName
version: 3.0.1
kind: Scheduled
Stages and Predicates
Parameters
let recCount = iff((discoveryCnt > 500), 1, 0);
let discoveryRecords is inlined into the numbered stages below.
Let binding: discoveryCnt
let discoveryCnt = (toscalar(discoveryRecords | count));
Stages 1 to 4 define let discoveryRecords (the rule's main pipeline source); stage 5 runs on it.
Stage 1: source
FortyTwoCrunchAPIProtection
Stage 2: where
| where TimeGenerated >= ago(5m)
Stage 3: project-away
| project-away NonBlockingMode, SourcePort, DestinationPort, Query, ApiId, RequestHeader, ResponseHeader, Errors, EventType, Uuid
Stage 4: where
| where Status == 404 and ErrorMessage startswith "path not defined in OAS"
Stage 5: top
discoveryRecords
| top recCount by Timestamp desc
Indicators
These rows show field, operator, and value matches.
| Field | Kind | Values | Search |
|---|---|---|---|
ErrorMessage | starts_with |
| field:"aws::errorMessage" kind:starts_with value:"path not defined in OAS" |
Status | eq |
| field:"Status" kind:eq value:"404" |