let ioc_lookBack = 1d;
_Im_Dns
| where isnotempty(DnsQuery)
| extend lowerDomain=tolower(DnsQuery)
| join kind=inner (
ThreatIntelIndicators
| where ObservableKey == 'domain-name:value'
| where isnotempty(ObservableValue)
| where SourceSystem == "Google Threat Intelligence"
| where TimeGenerated >= ago(ioc_lookBack)
| summarize LatestIndicatorTime = arg_max(TimeGenerated, *) by Id
| where IsActive == true and (isnull(ValidUntil) or ValidUntil > now())
| extend lowerDomain=tolower(ObservableValue)
) on lowerDomain
| project Domain=ObservableValue, Description=Data.description, Type, TimeGenerated
severity: Medium
queryPeriod: 1d
name: Google Threat Intelligence - Threat Hunting Domain
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Google Threat Intelligence/Analytic Rules/ThreatHunting/ThreatHuntDomain.yaml
kind: Scheduled
entityMappings:
- fieldMappings:
- columnName: Domain
identifier: DomainName
entityType: DNS
alertDetailsOverride:
alertDescriptionFormat: Correlation found from the {{Type}} table.
alertDisplayNameFormat: Google Threat Intelligence Match
version: 1.0.0
relevantTechniques:
- T1071
id: d9e1646c-dc17-4150-ac85-581f5c9cb41f
queryFrequency: 30m
triggerThreshold: 0
triggerOperator: gt
incidentConfiguration:
groupingConfiguration:
enabled: true
reopenClosedIncident: false
matchingMethod: AllEntities
lookbackDuration: 1h
createIncident: true
eventGroupingSettings:
aggregationKind: AlertPerResult
description: |
'Google Threat Intelligence domain correlation.'
requiredDataConnectors:
- connectorId: ThreatIntelligence
dataTypes:
- ThreatIntelIndicators
tactics:
- CommandAndControl
query: |
let ioc_lookBack = 1d;
_Im_Dns
| where isnotempty(DnsQuery)
| extend lowerDomain=tolower(DnsQuery)
| join kind=inner (
ThreatIntelIndicators
| where ObservableKey == 'domain-name:value'
| where isnotempty(ObservableValue)
| where SourceSystem == "Google Threat Intelligence"
| where TimeGenerated >= ago(ioc_lookBack)
| summarize LatestIndicatorTime = arg_max(TimeGenerated, *) by Id
| where IsActive == true and (isnull(ValidUntil) or ValidUntil > now())
| extend lowerDomain=tolower(ObservableValue)
) on lowerDomain
| project Domain=ObservableValue, Description=Data.description, Type, TimeGenerated