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

Snowflake - Query on sensitive or restricted table

Back
Idf258fa0c-e26c-4e2b-94fb-88b6cef0ca6e
RulenameSnowflake - Query on sensitive or restricted table
DescriptionDetects query on sensitive or restricted table.
SeverityMedium
TacticsCollection
TechniquesT1119
Required data connectorsSnowflake
KindScheduled
Query frequency1h
Query period1h
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Snowflake/Analytic Rules/SnowflakeQueryOnSensitiveTable.yaml
Version1.0.0
Arm templatef258fa0c-e26c-4e2b-94fb-88b6cef0ca6e.json
Deploy To Azure
let r_tbl = dynamic(['table_name']);
Snowflake
| where QUERY_TYPE_s =~ 'SELECT'
| where EXECUTION_STATUS_s =~ 'SUCCESS'
| extend tbl = extract(@'(FROM|from)\s(\S+)\s', 2, QUERY_TEXT_s)
| where tbl in~ (r_tbl)
| extend AccountCustomEntity = TargetUsername
kind: Scheduled
queryPeriod: 1h
description: |
    'Detects query on sensitive or restricted table.'
tactics:
- Collection
id: f258fa0c-e26c-4e2b-94fb-88b6cef0ca6e
requiredDataConnectors:
- connectorId: Snowflake
  dataTypes:
  - Snowflake
relevantTechniques:
- T1119
severity: Medium
version: 1.0.0
status: Available
entityMappings:
- entityType: Account
  fieldMappings:
  - identifier: Name
    columnName: AccountCustomEntity
name: Snowflake - Query on sensitive or restricted table
triggerOperator: gt
query: |
  let r_tbl = dynamic(['table_name']);
  Snowflake
  | where QUERY_TYPE_s =~ 'SELECT'
  | where EXECUTION_STATUS_s =~ 'SUCCESS'
  | extend tbl = extract(@'(FROM|from)\s(\S+)\s', 2, QUERY_TEXT_s)
  | where tbl in~ (r_tbl)
  | extend AccountCustomEntity = TargetUsername  
queryFrequency: 1h
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Snowflake/Analytic Rules/SnowflakeQueryOnSensitiveTable.yaml
triggerThreshold: 0
{
  "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": {
    "workspace": {
      "type": "String"
    }
  },
  "resources": [
    {
      "apiVersion": "2023-02-01-preview",
      "id": "[concat(resourceId('Microsoft.OperationalInsights/workspaces/providers', parameters('workspace'), 'Microsoft.SecurityInsights'),'/alertRules/f258fa0c-e26c-4e2b-94fb-88b6cef0ca6e')]",
      "kind": "Scheduled",
      "name": "[concat(parameters('workspace'),'/Microsoft.SecurityInsights/f258fa0c-e26c-4e2b-94fb-88b6cef0ca6e')]",
      "properties": {
        "alertRuleTemplateName": "f258fa0c-e26c-4e2b-94fb-88b6cef0ca6e",
        "customDetails": null,
        "description": "'Detects query on sensitive or restricted table.'\n",
        "displayName": "Snowflake - Query on sensitive or restricted table",
        "enabled": true,
        "entityMappings": [
          {
            "entityType": "Account",
            "fieldMappings": [
              {
                "columnName": "AccountCustomEntity",
                "identifier": "Name"
              }
            ]
          }
        ],
        "OriginalUri": "https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Snowflake/Analytic Rules/SnowflakeQueryOnSensitiveTable.yaml",
        "query": "let r_tbl = dynamic(['table_name']);\nSnowflake\n| where QUERY_TYPE_s =~ 'SELECT'\n| where EXECUTION_STATUS_s =~ 'SUCCESS'\n| extend tbl = extract(@'(FROM|from)\\s(\\S+)\\s', 2, QUERY_TEXT_s)\n| where tbl in~ (r_tbl)\n| extend AccountCustomEntity = TargetUsername\n",
        "queryFrequency": "PT1H",
        "queryPeriod": "PT1H",
        "severity": "Medium",
        "status": "Available",
        "suppressionDuration": "PT1H",
        "suppressionEnabled": false,
        "tactics": [
          "Collection"
        ],
        "techniques": [
          "T1119"
        ],
        "templateVersion": "1.0.0",
        "triggerOperator": "GreaterThan",
        "triggerThreshold": 0
      },
      "type": "Microsoft.OperationalInsights/workspaces/providers/alertRules"
    }
  ]
}