mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-13 05:47:23 +00:00
Merge remote-tracking branch 'refs/remotes/origin/atp-customti-update'
This commit is contained in:
commit
07c9181f76
@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Create custom threat intelligence using REST API in Windows Defender ATP
|
title: Create threat intelligence using REST API in Windows Defender ATP
|
||||||
description: Create your custom alert definitions and indicators of compromise in Windows Defender ATP using the available APIs in Windows Enterprise, Education, and Pro editions.
|
description: Create your custom alert definitions and indicators of compromise in Windows Defender ATP using the available APIs in Windows Enterprise, Education, and Pro editions.
|
||||||
keywords: alert definitions, indicators of compromise, threat intelligence, custom threat intelligence, rest api, api
|
keywords: alert definitions, indicators of compromise, threat intelligence, custom threat intelligence, rest api, api
|
||||||
search.product: eADQiWindows 10XVcnh
|
search.product: eADQiWindows 10XVcnh
|
||||||
@ -54,6 +54,44 @@ For this URL:
|
|||||||
**Quotas**</br>
|
**Quotas**</br>
|
||||||
Each tenant has a defined quota that limits the number of possible alert definitions, IOCs and another quota for IOCs of Action different than “equals” in the system. If you upload data beyond this quota, you'll encounter an HTTP error status code 507 (Insufficient Storage).
|
Each tenant has a defined quota that limits the number of possible alert definitions, IOCs and another quota for IOCs of Action different than “equals” in the system. If you upload data beyond this quota, you'll encounter an HTTP error status code 507 (Insufficient Storage).
|
||||||
|
|
||||||
|
## Request an access token from the token issuing endpoint
|
||||||
|
Windows Defender ATP Threat Intelligence API uses OAuth 2.0. In the context of Windows Defender ATP, the alert definitions are a protected resource. To issue tokens for ad-hoc, non-automatic operations you can use the **Preferences settings** page and click the **Generate Token** button. However, if you’d like to create an automated client, you need to use the “Client Credentials Grant” flow. For more information, see the [OAuth 2.0 authorization framework](https://tools.ietf.org/html/rfc6749#section-4.4).
|
||||||
|
|
||||||
|
For more information about the authorization flow, see [OAuth 2.0 authorization flow](https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-protocols-oauth-code#oauth-20-authorization-flow).
|
||||||
|
|
||||||
|
Make an HTTP POST request to the token issuing endpoint with the following parameters, replacing `<ClientId>`, `<ClientSecret>`, and `<AuthorizationServerUrl>` with your app's client ID, client secret and authorization server URL.
|
||||||
|
|
||||||
|
>[!NOTE]
|
||||||
|
> The authorization server URL is `https://login.windows.net/<AADTenantID>/oauth2/token`. Replace `<AADTenantID>` with your Azure Active Directory tenant ID.
|
||||||
|
|
||||||
|
>[!NOTE]
|
||||||
|
> The `<ClientId>`, `<ClientSecret>`, and the `<AuthorizationServerUrl>` are all provided to you when enabling the custom threat intelligence application. For more information, see [Enable the custom threat intelligence application](enable-custom-ti-windows-defender-advanced-threat-protection.md).
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
POST <AuthorizationServerUrl> HTTP/1.1
|
||||||
|
Content-Type: application/x-www-form-urlencoded
|
||||||
|
|
||||||
|
grant_type=client_credentials
|
||||||
|
&client_id=<ClientId>
|
||||||
|
&client_secret=<ClientSecret>
|
||||||
|
&resource=https://graph.microsoft.com
|
||||||
|
```
|
||||||
|
The response will include an access token and expiry information.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"token_type": "Bearer",
|
||||||
|
"expires_in": "3599",
|
||||||
|
"ext_expires_in": "0",
|
||||||
|
"expires_on": "1449685363",
|
||||||
|
"not_before": "1449681463",
|
||||||
|
"resource": "https://graph.microsoft.com",
|
||||||
|
"access_token": "<token>"
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
## Threat intelligence API metadata
|
## Threat intelligence API metadata
|
||||||
The metadata document ($metadata) is published at the service root.
|
The metadata document ($metadata) is published at the service root.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: Enable the custom threat intelligence application in Windows Defender ATP
|
title: Enable the custom threat intelligence API in Windows Defender ATP
|
||||||
description: Enable the custom threat intelligence application in Windows Defender ATP so that you can create custom threat intelligence using REST API.
|
description: Learn how to setup the custom threat intelligence application in Windows Defender ATP to create custom threat intelligence (TI).
|
||||||
keywords: enable custom threat intelligence application, custom ti application, application name, client id, authorization url, resource, client secret, access tokens
|
keywords: enable custom threat intelligence application, custom ti application, application name, client id, authorization url, resource, client secret, access tokens
|
||||||
search.product: eADQiWindows 10XVcnh
|
search.product: eADQiWindows 10XVcnh
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
@ -11,7 +11,7 @@ author: mjcaparas
|
|||||||
localizationpriority: high
|
localizationpriority: high
|
||||||
---
|
---
|
||||||
|
|
||||||
# Enable the custom threat intelligence application
|
# Enable the custom threat intelligence API in Windows Defender ATP
|
||||||
|
|
||||||
**Applies to:**
|
**Applies to:**
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: Understand threat intelligence concepts in Windows Defender ATP
|
title: Understand threat intelligence concepts in Windows Defender ATP
|
||||||
description: Understand the concepts around threat intelligence in Windows Defender Advanced Threat Protection so that you can effectively create custom intelligence for your organization.
|
description: Create custom threat alerts for your organization and learn the concepts around threat intelligence in Windows Defender Advanced Threat Protection.
|
||||||
keywords: threat intelligence, alert definitions, indicators of compromise, ioc
|
keywords: threat intelligence, alert definitions, indicators of compromise, ioc
|
||||||
search.product: eADQiWindows 10XVcnh
|
search.product: eADQiWindows 10XVcnh
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
|
@ -37,7 +37,7 @@ If your client secret expires or if you've misplaced the copy provided when you
|
|||||||
|
|
||||||
3. Select your tenant.
|
3. Select your tenant.
|
||||||
|
|
||||||
4. Click **Application**, then select your custom threat intelligence application.
|
4. Click **Application**, then select your custom threat intelligence application. The application name is **WindowsDefenderATPThreatIntelAPI** (formerly known as **WindowsDefenderATPCustomerTiConnector**).
|
||||||
|
|
||||||
5. Select **Keys** section, then provide a key description and specify the key validity duration.
|
5. Select **Keys** section, then provide a key description and specify the key validity duration.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: Use the threat intelligence API in Windows Defender Advanced Threat Protection to create custom alerts
|
title: Use the custom threat intelligence API to create custom alerts for your organization
|
||||||
description: Use the custom threat intelligence API to create custom alerts for your organization.
|
description: Use the threat intelligence API in Windows Defender Advanced Threat Protection to create custom alerts
|
||||||
keywords: threat intelligence, alert definitions, indicators of compromise
|
keywords: threat intelligence, alert definitions, indicators of compromise
|
||||||
search.product: eADQiWindows 10XVcnh
|
search.product: eADQiWindows 10XVcnh
|
||||||
ms.prod: w10
|
ms.prod: w10
|
||||||
|
Loading…
x
Reference in New Issue
Block a user