Microsoft Intune Feed
Use the Microsoft Intune Feed integration to get indicators from the feed.
Data Enrichment & Threat Intelligence · Microsoft Intune Feed · Feed
Details
| ID | Microsoft Intune Feed |
|---|---|
| Provider | Microsoft |
| Category | Data Enrichment & Threat Intelligence |
| From Version | 5.5.0 |
| Docker Image | demisto/btfl-soup:1.0.1.10120494 |
| Supported Modules | Agentix XSIAM |
README
Use the Microsoft Intune Feed integration to get indicators from the feed.
Configure Microsoft Intune Feed in Cortex
| Parameter | Description | Required |
|---|---|---|
| Fetch indicators | False | |
| Indicator Reputation | Indicators from this integration instance will be marked with this reputation | False |
| Source Reliability | Reliability of the source providing the intelligence data | True |
| Traffic Light Protocol Color | The Traffic Light Protocol (TLP) designation to apply to indicators fetched from the feed | False |
| False | ||
| False | ||
| Feed Fetch Interval | False | |
| The Microsoft Intune endpoint URL | True | |
| Tags | Supports CSV values. | False |
| Bypass exclusion list | When selected, the exclusion list is ignored for indicators from this feed. This means that if an indicator from this feed is on the exclusion list, the indicator might still be added to the system. | False |
| Trust any certificate (not secure) | False | |
| Use system proxy settings | False |
Commands
You can execute these commands from the CLI, as part of an automation, or in a playbook.
After you successfully execute a command, a DBot message appears in the War Room with the command details.
intune-get-indicators
Gets indicators from the feed.
Base Command
intune-get-indicators
Input
| Argument Name | Description | Required |
|---|---|---|
| limit | The maximum number of results to return. The default value is 10. Default is 0. | Optional |
Context Output
There is no context output for this command.
Configuration parameters
feed— Fetch indicatorsfeedReputation— Indicator ReputationfeedReliability— Source Reliability (required)tlp_color— Traffic Light Protocol ColorfeedExpirationPolicy—feedExpirationInterval—feedFetchInterval— Feed Fetch Intervalurl— The Microsoft Intune endpoint URL (required)feedTags— TagsfeedBypassExclusionList— Bypass exclusion listinsecure— Trust any certificate (not secure)proxy— Use system proxy settings
Commands (1)
-
intune-get-indicatorsGets indicators from the feed.
from FeedMicrosoftIntune import Client URL = "https://learn.microsoft.com/en-us/mem/intune/fundamentals/intune-endpoints" def test_build_iterator(requests_mock): with open("test_data/Microsoft_endpoint_mock.html") as file: response = file.read() requests_mock.get(URL, text=response) expected_domain = "login.microsoftonline.com" expected_domain_glob = "*.manage.microsoft.com" expected_ip = "52.175.12.209" expected_cidr = "40.82.248.224/28" client = Client( base_url=URL, verify=False, proxy=False, ) indicators = client.build_iterator() domain_indicators = {indicator["value"] for indicator in indicators if indicator["type"] == "Domain"} domain_glob_indicators = {indicator["value"] for indicator in indicators if indicator["type"] == "DomainGlob"} ip_indicators = {indicator["value"] for indicator in indicators if indicator["type"] == "IP"} cidr_indicators = {indicator["value"] for indicator in indicators if indicator["type"] == "CIDR"} assert expected_domain in domain_indicators assert expected_domain_glob in domain_glob_indicators assert expected_ip in ip_indicators assert expected_cidr in cidr_indicators