Microsoft Sentinel Analytic Rules
cloudbrothers.infoAzure Sentinel RepoToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

Google Threat Intelligence - Threat Hunting Domain

Back
Idd9e1646c-dc17-4150-ac85-581f5c9cb41f
RulenameGoogle Threat Intelligence - Threat Hunting Domain
DescriptionGoogle Threat Intelligence domain correlation.
SeverityMedium
TacticsCommandAndControl
TechniquesT1071
Required data connectorsThreatIntelligence
KindScheduled
Query frequency30m
Query period1d
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Google Threat Intelligence/Analytic Rules/ThreatHunting/ThreatHuntDomain.yaml
Version1.0.0
Arm templated9e1646c-dc17-4150-ac85-581f5c9cb41f.json
Deploy To Azure
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
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  
entityMappings:
- entityType: DNS
  fieldMappings:
  - columnName: Domain
    identifier: DomainName
triggerThreshold: 0
name: Google Threat Intelligence - Threat Hunting Domain
severity: Medium
relevantTechniques:
- T1071
alertDetailsOverride:
  alertDisplayNameFormat: Google Threat Intelligence Match
  alertDescriptionFormat: Correlation found from the {{Type}} table.
incidentConfiguration:
  createIncident: true
  groupingConfiguration:
    lookbackDuration: 1h
    matchingMethod: AllEntities
    enabled: true
    reopenClosedIncident: false
queryPeriod: 1d
tactics:
- CommandAndControl
requiredDataConnectors:
- connectorId: ThreatIntelligence
  dataTypes:
  - ThreatIntelIndicators
queryFrequency: 30m
version: 1.0.0
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Google Threat Intelligence/Analytic Rules/ThreatHunting/ThreatHuntDomain.yaml
id: d9e1646c-dc17-4150-ac85-581f5c9cb41f
kind: Scheduled
description: |
    'Google Threat Intelligence domain correlation.'
eventGroupingSettings:
  aggregationKind: AlertPerResult
triggerOperator: gt