Detection rules › Kusto

Illumio VEN Offline Detection Rule

Status
available
Severity
high
Time window
1h
Source
github.com/Azure/Azure-Sentinel

'Create Microsoft Sentinel Incident When Ven Goes Into Offline state'

MITRE ATT&CK coverage

TacticTechniques
Defense Impairment

Rule body

id: ec07fcd3-724f-426d-9f53-041801ca5f6c
name: Illumio VEN Offline Detection Rule
description: |
  'Create Microsoft Sentinel Incident When Ven Goes Into Offline state'
severity: High
status: Available
requiredDataConnectors: 
  - connectorId: IllumioSaaSDataConnector
    dataTypes:
      - Illumio_Auditable_Events_CL
  - connectorId: SyslogAma
    datatypes:
      - Syslog      
queryFrequency: 60m
queryPeriod: 60m
triggerOperator: gt
triggerThreshold: 0
tactics:
- DefenseEvasion
relevantTechniques:
- T1562
query: |
    Illumio_Auditable_Events_CL
    | union IllumioSyslogAuditEvents    
    | where event_type has 'agent_offline_check'
    | mv-expand resource_changes
    | extend hostname = resource_changes['resource']['workload']['hostname'],
        workload_href = resource_changes['resource']['workload']['href'],
        workload_labels = resource_changes['resource']['workload']['labels']
    | project-away resource_changes, version, notifications, action, severity, status // action field will have filtered ip addr, so no point of using IP entity
eventGroupingSettings:
  aggregationKind: SingleAlert
entityMappings:
  - entityType: Host
    fieldMappings:
      - identifier: HostName
        columnName: hostname     
alertDetailsOverride:
  alertDisplayNameFormat: | 
    Illumio VEN Offline Incident for {{hostname}}
  alertDescriptionFormat: | 
    Illumio VEN Offline Incident for {{hostname}} generated at {{TimeGenerated}}
version: 1.0.7
kind: Scheduled

Stages and Predicates

Stage 1: source

Illumio_Auditable_Events_CL

Stage 2: union

| union IllumioSyslogAuditEvents

Stage 3: source

IllumioSyslogAuditEvents

Stage 4: where

| where event_type has 'agent_offline_check'

Stage 5: mv-expand

| mv-expand resource_changes

Stage 6: extend

| extend hostname = resource_changes['resource']['workload']['hostname'],
    workload_href = resource_changes['resource']['workload']['href'],
    workload_labels = resource_changes['resource']['workload']['labels']

Stage 7: project-away

| project-away resource_changes, version, notifications, action, severity, status

Indicators

These rows show field, operator, and value matches.

FieldKindValuesSearch
event_typematch
  • agent_offline_check transforms: term
field:"event_type" kind:match value:"agent_offline_check"

Output fields

These fields are emitted when the rule matches.

FieldSource
hostnameextend
workload_hrefextend
workload_labelsextend