Detection rules › Kusto

Cisco Cloud Security - Connection to non-corporate private network

Status
available
Severity
medium
Time window
10m
Source
github.com/Azure/Azure-Sentinel

'IP addresses of broadband links that usually indicates users attempting to access their home network, for example for a remote session to a home computer.'

MITRE ATT&CK coverage

TacticTechniques
Command & Control
Exfiltration

Rule body

id: c9b6d281-b96b-4763-b728-9a04b9fe1246
name: Cisco Cloud Security - Connection to non-corporate private network
description: |
  'IP addresses of broadband links that usually indicates users attempting to access their home network, for example for a remote session to a home computer.'
severity: Medium
status: Available
requiredDataConnectors:
  - connectorId: CiscoUmbrellaDataConnector
    dataTypes:
      - Cisco_Umbrella_proxy_CL
queryFrequency: 10m
queryPeriod: 10m
triggerOperator: gt
triggerThreshold: 0
tactics:
  - CommandAndControl
  - Exfiltration
relevantTechniques:
  - T1573
  - T1041
query: |
  Cisco_Umbrella
  | where EventType == 'proxylogs'
  | where DvcAction =~ 'Allowed'
  | where UrlCategory has_any ('Dynamic and Residential', 'Personal VPN')
  | project TimeGenerated, SrcIpAddr, DstIpAddr, Identities 
entityMappings:
  - entityType: IP
    fieldMappings:
      - identifier: Address
        columnName: SrcIpAddr
kind: Scheduled
version: 1.0.3

Stages and Predicates

Stage 1: source

Cisco_Umbrella

Stage 2: where

| where EventType == 'proxylogs'

Stage 3: where

| where DvcAction =~ 'Allowed'

Stage 4: where

| where UrlCategory has_any ('Dynamic and Residential', 'Personal VPN')

Stage 5: project

| project TimeGenerated, SrcIpAddr, DstIpAddr, Identities

Indicators

These rows show field, operator, and value matches.

FieldKindValuesSearch
DvcActioneq
  • Allowed
field:"DvcAction" kind:eq value:"Allowed"
EventTypeeq
  • proxylogs
field:"EventType" kind:eq value:"proxylogs"
UrlCategorymatch
  • Dynamic and Residential transforms: term
  • Personal VPN transforms: term
field:"UrlCategory" kind:match

Output fields

These fields are emitted when the rule matches.

FieldSource
DstIpAddrproject
Identitiesproject
SrcIpAddrproject
TimeGeneratedproject