Browse: 🏠 · Solutions · Connectors · Methods · Tables · Content · Parsers · ASIM Parsers · ASIM Products · 📊
This playbook ingests malware indicators from Intel 471's Titan or Verity API into Microsoft Sentinel as tiIndicator resource type.
| Attribute | Value |
|---|---|
| Type | Playbook |
| Solution | Intel471 |
| Source | View on GitHub |
📄 Source: Intel471-ImportMalwareIntelligenceToSentinel/readme.md
This playbook fetches malware intelligence indicators from the Intel 471's Titan or Verity API and ingests them using Threat Intelligence UploadStixObjects API for Microsoft Sentinel.
azuredeploy.json Azure Resource Manager template (ARM template) is responsible for building the Logic App along with the necessary connections. The ARM builds following components:
ThreatIntelIndicators table using UploadStixObjects API.TitanUserNameSentinel and TitanAPIKeySentinel keys, or Verity API credentials under VerityUserNameSentinel and VerityAPIKeySentinel keys.Content hub and install Threat Intelligence solution.Provide following parameters:
Titan or Verity.Access control (IAM) → + Add → Add role assignment. Choose Key Vault Secrets User. On the next screen hit + Select members, search for Intel 471 and select newly created logic app. Select it and proceed with granting access rights.Microsoft Sentinel Contributor.Recurrence block (the first one).Get first 10 ingested indicators
ThreatIntelIndicators | where SourceSystem startswith "Intel 471" | limit 10
Look for a specific indicator
ThreatIntelIndicators | where SourceSystem startswith "Intel 471" | where ObservableValue == "227.151.66.29"
ThreatIntelIndicators | where SourceSystem startswith "Intel 471" | where ObservableValue == "tcp://58.68.162.115:16"
ThreatIntelIndicators | where SourceSystem startswith "Intel 471" | where ObservableValue == "58acf725b72ecfdbdacd532feff1c89359021e6502664147456c5b2db2a05544"
Get indicators of a specific type
```
[Content truncated...]
Browse: 🏠 · Solutions · Connectors · Methods · Tables · Content · Parsers · ASIM Parsers · ASIM Products · 📊