Digital Shadows Searchlight (using Azure Functions) connector for Microsoft Sentinel
The Digital Shadows data connector provides ingestion of the incidents and alerts from Digital Shadows Searchlight into the Microsoft Sentinel using the REST API. The connector will provide the incidents and alerts information such that it helps to examine, diagnose and analyse the potential security risks and threats.
This is autogenerated content. For changes, contact the solution provider.
Connector attributes
Connector attribute | Description |
---|---|
Application settings | DigitalShadowsAccountID WorkspaceID WorkspaceKey DigitalShadowsKey DigitalShadowsSecret HistoricalDays DigitalShadowsURL ClassificationFilterOperation HighVariabilityClassifications FUNCTION_NAME logAnalyticsUri (optional)(add any other settings required by the Function App)Set the DigitalShadowsURL value to: https://api.searchlight.app/v1 Set the HighVariabilityClassifications value to: exposed-credential,marked-document Set the ClassificationFilterOperation value to: exclude for exclude function app or include for include function app |
Azure function app code | https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Digital%20Shadows/Data%20Connectors/Digital%20Shadows/digitalshadowsConnector.zip |
Log Analytics table(s) | DigitalShadows_CL |
Data collection rules support | Not currently supported |
Supported by | Digital Shadows |
Query samples
All Digital Shadows incidents and alerts ordered by time most recently raised
DigitalShadows_CL
| order by raised_t desc
Prerequisites
To integrate with Digital Shadows Searchlight (using Azure Functions) make sure you have:
- Microsoft.Web/sites permissions: Read and write permissions to Azure Functions to create a Function App is required. See the documentation to learn more about Azure Functions.
- REST API Credentials/permissions: Digital Shadows account ID, secret and key is required. See the documentation to learn more about API on the
https://portal-digitalshadows.com/learn/searchlight-api/overview/description
.
Vendor installation instructions
Note
This connector uses Azure Functions to connect to a 'Digital Shadows Searchlight' to pull its logs into Microsoft Sentinel. This might result in additional data ingestion costs. Check the Azure Functions pricing page for details.
(Optional Step) Securely store workspace and API authorization key(s) or token(s) in Azure Key Vault. Azure Key Vault provides a secure mechanism to store and retrieve key values. Follow these instructions to use Azure Key Vault with an Azure Function App.
STEP 1 - Configuration steps for the 'Digital Shadows Searchlight' API
The provider should provide or link to detailed steps to configure the 'Digital Shadows Searchlight' API endpoint so that the Azure Function can authenticate to it successfully, get its authorization key or token, and pull the appliance's logs into Microsoft Sentinel.
STEP 2 - Choose ONE from the following two deployment options to deploy the connector and the associated Azure Function
IMPORTANT: Before deploying the 'Digital Shadows Searchlight' connector, have the Workspace ID and Workspace Primary Key (can be copied from the following), as well as the 'Digital Shadows Searchlight' API authorization key(s) or Token, readily available.
Option 1 - Azure Resource Manager (ARM) Template
Use this method for automated deployment of the 'Digital Shadows Searchlight' connector.
Click the Deploy to Azure button below.
Select the preferred Subscription, Resource Group and Location.
Enter the Workspace ID, Workspace Key, API Username, API Password, 'and/or Other required fields'.
Note: If using Azure Key Vault secrets for any of the values above, use the
@Microsoft.KeyVault(SecretUri={Security Identifier})
schema in place of the string values. Refer to Key Vault references documentation for further details. 4. Mark the checkbox labeled I agree to the terms and conditions stated above. 5. Click Purchase to deploy.
Option 2 - Manual Deployment of Azure Functions
Use the following step-by-step instructions to deploy the 'Digital Shadows Searchlight' connector manually with Azure Functions.
Create a Function App
From the Azure Portal, navigate to Function App.
Click + Create at the top.
In the Basics tab, ensure Runtime stack is set to python 3.8.
In the Hosting tab, ensure Plan type is set to 'Consumption (Serverless)'. 5.select Storage account
'Add other required configurations'.
'Make other preferable configuration changes', if needed, then click Create.
Import Function App Code(Zip deployment)
Install Azure CLI
From terminal type
az functionapp deployment source config-zip -g <ResourceGroup> -n <FunctionApp> --src <Zip File>
and hit enter. Set theResourceGroup
value to: your resource group name. Set theFunctionApp
value to: your newly created function app name. Set theZip File
value to:digitalshadowsConnector.zip
(path to your zip file). Note:- Download the zip file from the link - Function App CodeConfigure the Function App
In the Function App screen, click the Function App name and select Configuration.
In the Application settings tab, select + New application setting.
Add each of the following 'x (number of)' application settings individually, under Name, with their respective string values (case-sensitive) under Value: DigitalShadowsAccountID WorkspaceID WorkspaceKey DigitalShadowsKey DigitalShadowsSecret HistoricalDays DigitalShadowsURL ClassificationFilterOperation HighVariabilityClassifications FUNCTION_NAME logAnalyticsUri (optional) (add any other settings required by the Function App) Set the
DigitalShadowsURL
value to:https://api.searchlight.app/v1
Set theHighVariabilityClassifications
value to:exposed-credential,marked-document
Set theClassificationFilterOperation
value to:exclude
for exclude function app orinclude
for include function app
Note: If using Azure Key Vault secrets for any of the values above, use the
@Microsoft.KeyVault(SecretUri={Security Identifier})
schema in place of the string values. Refer to Azure Key Vault references documentation for further details.
- Use logAnalyticsUri to override the log analytics API endpoint for dedicated cloud. For example, for public cloud, leave the value empty; for Azure GovUS cloud environment, specify the value in the following format:
https://<CustomerId>.ods.opinsights.azure.us
.
- Once all application settings have been entered, click Save.
Next steps
For more information, go to the related solution in the Azure Marketplace.