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

Cognni Incidents for Highly Sensitive Legal Information

Back
Id4f45f43b-3a4b-491b-9cbe-d649603384aa
RulenameCognni Incidents for Highly Sensitive Legal Information
DescriptionDisplay incidents in which highly sensitive legal information was placed at risk by user sharing.
SeverityHigh
TacticsCollection
TechniquesT1530
Required data connectorsCognniSentinelDataConnector
KindScheduled
Query frequency5h
Query period5h
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Cognni/Analytic Rules/CognniHighRiskLegalIncidents.yaml
Version1.0.0
Arm template4f45f43b-3a4b-491b-9cbe-d649603384aa.json
Deploy To Azure
let highRisk = 3;
let legal = 'Legal Information';
CognniIncidents_CL 
| where Severity == highRisk
| where informationType_s == legal
| where TimeGenerated >= ago(5h)
| extend AccountCustomEntity = userId_s
tactics:
- Collection
triggerThreshold: 0
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Cognni/Analytic Rules/CognniHighRiskLegalIncidents.yaml
description: |
    'Display incidents in which highly sensitive legal information was placed at risk by user sharing.'
id: 4f45f43b-3a4b-491b-9cbe-d649603384aa
severity: High
entityMappings:
- fieldMappings:
  - identifier: FullName
    columnName: AccountCustomEntity
  entityType: Account
status: Available
requiredDataConnectors:
- connectorId: CognniSentinelDataConnector
  dataTypes:
  - CognniIncidents_CL
kind: Scheduled
queryFrequency: 5h
name: Cognni Incidents for Highly Sensitive Legal Information
triggerOperator: gt
queryPeriod: 5h
version: 1.0.0
query: |
  let highRisk = 3;
  let legal = 'Legal Information';
  CognniIncidents_CL 
  | where Severity == highRisk
  | where informationType_s == legal
  | where TimeGenerated >= ago(5h)
  | extend AccountCustomEntity = userId_s  
relevantTechniques:
- T1530