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 Url

Back
Id89290690-54c4-4196-91c5-d32b1df5d873
RulenameGoogle Threat Intelligence - Threat Hunting Url
DescriptionGoogle Threat Intelligence Url correlation.
SeverityMedium
TacticsInitialAccess
TechniquesT1566
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/ThreatHuntUrl.yaml
Version1.0.0
Arm template89290690-54c4-4196-91c5-d32b1df5d873.json
Deploy To Azure
let ioc_lookBack = 1d;
_Im_WebSession
| where isnotempty(Url)
| extend lowerUrl=tolower(Url)
| join kind=inner (
ThreatIntelIndicators
| where ObservableKey == 'url: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 lowerUrl=tolower(ObservableValue)
) on lowerUrl
| project Url=ObservableValue, Description=Data.description, Type, TimeGenerated
version: 1.0.0
triggerOperator: gt
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Google Threat Intelligence/Analytic Rules/ThreatHunting/ThreatHuntUrl.yaml
description: |
    'Google Threat Intelligence Url correlation.'
alertDetailsOverride:
  alertDisplayNameFormat: Google Threat Intelligence Match
  alertDescriptionFormat: Correlation found from the {{Type}} table.
queryFrequency: 30m
name: Google Threat Intelligence - Threat Hunting Url
tactics:
- InitialAccess
triggerThreshold: 0
id: 89290690-54c4-4196-91c5-d32b1df5d873
query: |
  let ioc_lookBack = 1d;
  _Im_WebSession
  | where isnotempty(Url)
  | extend lowerUrl=tolower(Url)
  | join kind=inner (
  ThreatIntelIndicators
  | where ObservableKey == 'url: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 lowerUrl=tolower(ObservableValue)
  ) on lowerUrl
  | project Url=ObservableValue, Description=Data.description, Type, TimeGenerated  
incidentConfiguration:
  createIncident: true
  groupingConfiguration:
    reopenClosedIncident: false
    matchingMethod: AllEntities
    enabled: true
    lookbackDuration: 1h
severity: Medium
eventGroupingSettings:
  aggregationKind: AlertPerResult
queryPeriod: 1d
entityMappings:
- fieldMappings:
  - columnName: Url
    identifier: Url
  entityType: URL
relevantTechniques:
- T1566
kind: Scheduled
requiredDataConnectors:
- connectorId: ThreatIntelligence
  dataTypes:
  - ThreatIntelIndicators