|
| 1 | +{ |
| 2 | + "name": "CommvaultSecurityIQConnector", |
| 3 | + "apiVersion": "2025-07-01-preview", |
| 4 | + "type": "Microsoft.SecurityInsights/dataConnectorDefinitions", |
| 5 | + "location": "{{location}}", |
| 6 | + "kind": "Customizable", |
| 7 | + "properties": { |
| 8 | + "connectorUiConfig": { |
| 9 | + "id": "CommvaultSecurityIQConnector", |
| 10 | + "title": "Commvault Security IQ (via Codeless Connector Framework)", |
| 11 | + "publisher": "Commvault", |
| 12 | + "descriptionMarkdown": "The Commvault Security IQ data connector ingests threat indicator anomaly events from the Commvault `/Client/Anomaly` API into Microsoft Sentinel. Each record in `CommvaultAlertsCCF_CL` corresponds to one entry in the `anomalyClients` array and captures fields such as `AnomalyType` (a bitfield — 64=Ransomware, 8192=VSA Attack), file operation counts (`CreateCount`, `DeleteCount`, `ModCount`, `RenameCount`, `InfectedFilesCount`), data sizes (`ApplicationSizeMB`, `BackupSizeMB`), and client details (`ClientName`, `ClientId`). The connector requires a Commvault Base URL and a valid QSDK Access Token.", |
| 13 | + "graphQueriesTableName": "CommvaultAlertsCCF_CL", |
| 14 | + "graphQueries": [ |
| 15 | + { |
| 16 | + "metricName": "Total anomaly events received", |
| 17 | + "legend": "Commvault Security IQ Events", |
| 18 | + "baseQuery": "CommvaultAlertsCCF_CL" |
| 19 | + } |
| 20 | + ], |
| 21 | + "sampleQueries": [ |
| 22 | + { |
| 23 | + "description": "Last 10 anomaly events", |
| 24 | + "query": "CommvaultAlertsCCF_CL\n| where TimeGenerated > ago(24h)\n| project TimeGenerated, AnomalyType, ClientName, ClientId, CreateCount, DeleteCount, ModCount, RenameCount, InfectedFilesCount, Location\n| sort by TimeGenerated desc\n| limit 10" |
| 25 | + }, |
| 26 | + { |
| 27 | + "description": "High-severity anomalies (Ransomware: bit 64, VSA: bit 8192)", |
| 28 | + "query": "CommvaultAlertsCCF_CL\n| where TimeGenerated > ago(7d)\n| where binary_and(AnomalyType, 64) == 64 or binary_and(AnomalyType, 8192) == 8192\n| project TimeGenerated, ClientName, AnomalyType, InfectedFilesCount, Location\n| sort by TimeGenerated desc" |
| 29 | + }, |
| 30 | + { |
| 31 | + "description": "Clients with the most anomaly events in the last 7 days", |
| 32 | + "query": "CommvaultAlertsCCF_CL\n| where TimeGenerated > ago(7d)\n| summarize EventCount = count() by ClientName\n| sort by EventCount desc\n| limit 20" |
| 33 | + } |
| 34 | + ], |
| 35 | + "dataTypes": [ |
| 36 | + { |
| 37 | + "name": "CommvaultAlertsCCF_CL", |
| 38 | + "lastDataReceivedQuery": "CommvaultAlertsCCF_CL\n| where TimeGenerated > ago(12h)\n| summarize Time = max(TimeGenerated)\n| where isnotempty(Time)" |
| 39 | + } |
| 40 | + ], |
| 41 | + "connectivityCriteria": [ |
| 42 | + { |
| 43 | + "type": "HasDataConnectors" |
| 44 | + } |
| 45 | + ], |
| 46 | + "availability": { |
| 47 | + "isPreview": true, |
| 48 | + "status": 1 |
| 49 | + }, |
| 50 | + "permissions": { |
| 51 | + "resourceProvider": [ |
| 52 | + { |
| 53 | + "provider": "Microsoft.OperationalInsights/workspaces", |
| 54 | + "permissionsDisplayText": "Read and Write permissions are required.", |
| 55 | + "providerDisplayName": "Workspace", |
| 56 | + "scope": "Workspace", |
| 57 | + "requiredPermissions": { |
| 58 | + "write": true, |
| 59 | + "read": true, |
| 60 | + "delete": true, |
| 61 | + "action": false |
| 62 | + } |
| 63 | + } |
| 64 | + ], |
| 65 | + "customs": [ |
| 66 | + { |
| 67 | + "name": "Commvault API Credentials", |
| 68 | + "description": "A Commvault environment Base URL and a valid QSDK Access Token are required to authorize API requests." |
| 69 | + } |
| 70 | + ] |
| 71 | + }, |
| 72 | + "instructionSteps": [ |
| 73 | + { |
| 74 | + "title": "1. Connector Management", |
| 75 | + "description": "Manage your Commvault Security IQ connector instances. Each instance connects to one Commvault environment.", |
| 76 | + "instructions": [ |
| 77 | + { |
| 78 | + "type": "Markdown", |
| 79 | + "parameters": { |
| 80 | + "content": "## Commvault Security IQ Connector Instances\n\nThis connector polls the Commvault `/Client/Anomaly` API every 30 minutes and ingests threat anomaly events into the `CommvaultAlertsCCF_CL` table." |
| 81 | + } |
| 82 | + }, |
| 83 | + { |
| 84 | + "type": "DataConnectorsGrid", |
| 85 | + "parameters": { |
| 86 | + "mapping": [ |
| 87 | + { |
| 88 | + "columnName": "Environment Endpoint", |
| 89 | + "columnValue": "properties.request.apiEndpoint" |
| 90 | + }, |
| 91 | + { |
| 92 | + "columnName": "Status", |
| 93 | + "columnValue": "properties.connectionState" |
| 94 | + } |
| 95 | + ], |
| 96 | + "menuItems": [ |
| 97 | + "DeleteConnector" |
| 98 | + ] |
| 99 | + } |
| 100 | + }, |
| 101 | + { |
| 102 | + "type": "ContextPane", |
| 103 | + "parameters": { |
| 104 | + "label": "Add Connector", |
| 105 | + "title": "Add Commvault Security IQ Connector", |
| 106 | + "subtitle": "Connect to a Commvault environment", |
| 107 | + "contextPaneType": "DataConnectorsContextPane", |
| 108 | + "instructionSteps": [ |
| 109 | + { |
| 110 | + "instructions": [ |
| 111 | + { |
| 112 | + "type": "Markdown", |
| 113 | + "parameters": { |
| 114 | + "content": "## API Configuration\n\nProvide your Commvault environment endpoint URL and QSDK Access Token." |
| 115 | + } |
| 116 | + }, |
| 117 | + { |
| 118 | + "type": "Textbox", |
| 119 | + "parameters": { |
| 120 | + "label": "Commvault Environment Endpoint URL", |
| 121 | + "placeholder": "https://your-environment.metallic.io/commandcenter/api", |
| 122 | + "type": "text", |
| 123 | + "name": "endpointUrl", |
| 124 | + "validations": { |
| 125 | + "required": true |
| 126 | + } |
| 127 | + } |
| 128 | + }, |
| 129 | + { |
| 130 | + "type": "InfoMessage", |
| 131 | + "parameters": { |
| 132 | + "text": "Enter the full API base URL of your Commvault environment including the `/commandcenter/api` path (e.g., `https://your-commvault-endpoint/commandcenter/api`). Do **not** include `/Client/Anomaly` — the connector appends this automatically.", |
| 133 | + "visible": true, |
| 134 | + "inline": false |
| 135 | + } |
| 136 | + }, |
| 137 | + { |
| 138 | + "type": "Textbox", |
| 139 | + "parameters": { |
| 140 | + "label": "QSDK Access Token", |
| 141 | + "placeholder": "Enter your Commvault QSDK Access Token", |
| 142 | + "type": "password", |
| 143 | + "name": "qsdkToken", |
| 144 | + "validations": { |
| 145 | + "required": true |
| 146 | + } |
| 147 | + } |
| 148 | + }, |
| 149 | + { |
| 150 | + "type": "InfoMessage", |
| 151 | + "parameters": { |
| 152 | + "text": "The QSDK Token is sent as a `Bearer` token in the `Authorization` header. Generate this token from the Commvault Command Center under **Security > API Tokens**.", |
| 153 | + "visible": true, |
| 154 | + "inline": false |
| 155 | + } |
| 156 | + }, |
| 157 | + { |
| 158 | + "type": "InfoMessage", |
| 159 | + "parameters": { |
| 160 | + "text": "**Data Collection Schedule**: The connector polls for new anomaly events every 30 minutes.", |
| 161 | + "visible": true, |
| 162 | + "inline": true |
| 163 | + } |
| 164 | + } |
| 165 | + ] |
| 166 | + } |
| 167 | + ] |
| 168 | + } |
| 169 | + } |
| 170 | + ] |
| 171 | + } |
| 172 | + ] |
| 173 | + } |
| 174 | + } |
| 175 | +} |
0 commit comments