Skip to content

Commit

Permalink
Merge pull request #2381 from MicrosoftDocs/main
Browse files Browse the repository at this point in the history
Publish main to live, 01/09, 5:00 PM IST
  • Loading branch information
aditisrivastava07 authored Jan 9, 2025
2 parents 2147aa0 + 5f668a3 commit 2c68dca
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 72 deletions.
69 changes: 4 additions & 65 deletions CloudAppSecurityDocs/investigate-anomaly-alerts.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ Following proper investigation, all Defender for Cloud Apps alerts can be classi

You should use the following general guidelines when investigating any type of alert to gain a clearer understanding of the potential threat before applying the recommended action.

- Review the user's [investigation priority score](tutorial-ueba.md#understand-the-investigation-priority-score) and compare with the rest of the organization. This will help you identify which users in your organization pose the greatest risk.
- If you identify a **TP**, review all the user's activities to gain an understanding of the impact.
- Review all user activity for other indicators of compromise and explore the source and scope of impact. For example, review the following user device information and compare with known device information:
- Operating system and version
Expand Down Expand Up @@ -712,74 +711,14 @@ Establishing a new user's activity pattern requires an initial learning period o
1. Review the deletion activities and create a list of deleted files. If needed, recover the deleted files.
1. Optionally, create a playbook using Power Automate to contact users and their managers to verify the activity.

### Investigation priority score increase (preview)
### Investigation priority score increase (legacy)

Anomalous activities and activities that triggered alerts are given scores based on severity, user impact, and behavioral analysis of the user. The analysis is done based on other users in the tenants.
Starting November 2024, **Investigate risky users** support for Microsoft Defender for Cloud Apps is retired. If this feature was used in your organization and is needed, we recommend using the Entra risk score feature. Please use the following resources for additional information:

When there's a significant and anomalous increase in the investigation priority score of a certain user, the alert will be triggered.
- [Investigate risk Microsoft Entra ID Protection - Microsoft Entra ID Protection | Microsoft Learn](/entra/id-protection/howto-identity-protection-investigate-risk)

This alert enables detecting potential breaches that are characterized by activities that don't necessarily trigger specific alerts but accumulate to a suspicious behavior for the user.
- [Microsoft Entra ID Protection risk-based access policies - Microsoft Entra ID Protection | Microsoft Learn](/entra/id-protection/concept-identity-protection-policies)

**Learning period**

Establishing a new user's activity pattern requires an initial learning period of seven days, during which alerts aren't triggered for any score increase.

**TP**, **B-TP**, or **FP**?

1. **TP**: If you're able to confirm that the activities of the user aren't legitimate.

**Recommended action**: Suspend the user, mark the user as compromised, and reset their password.

1. **B-TP**: If you're able to confirm that user indeed significantly deviated from usual behavior, but there's no potential breach.

1. **FP** (Unusual behavior): If you're able to confirm that the user legitimately performed the unusual activities, or more activities than the established baseline.

**Recommended action**: Dismiss the alert.

**Understand the scope of the breach**

1. Review all user activity and alerts for additional indicators of compromise.

#### Deprecation timeline

We're gradually retiring the **Investigation priority score increase** alert from Microsoft Defender for Cloud Apps by August 2024.

After careful analysis and consideration, we decided to deprecate it due to the high rate of false positives associated with this alert, which we found wasn't contributing effectively to the overall security of your organization.

Our research indicated that this feature wasn't adding significant value and wasn't aligned with our strategic focus on delivering high-quality, reliable security solutions.

We're committed to continuously improving our services and ensuring that they meet your needs and expectations.

For those who wish to continue using this alert, we suggest using the following advanced hunting query instead as a suggested template. Modify the query based on your needs.

```kql
let time_back = 1d;
let last_seen_threshold = 30;
// the number of days which the resource is considered to be in use by the user lately, and therefore not indicates anomaly resource usage
// anomaly score based on LastSeenForUser column in CloudAppEvents table
let last_seen_scores =
CloudAppEvents
| where Timestamp > ago(time_back)
| where isnotempty(LastSeenForUser)
| mv-expand LastSeenForUser
| extend resource = tostring(bag_keys(LastSeenForUser)[0])
| extend last_seen = LastSeenForUser[resource]
| where last_seen < 0 or last_seen > last_seen_threshold
// score is calculated as the number of resources which were never seen before or breaching the chosen threshold
| summarize last_seen_score = dcount(resource) by ReportId, AccountId;
// anomaly score based on UncommonForUser column in CloudAppEvents table
let uncommonality_scores =
CloudAppEvents
| where Timestamp > ago(time_back)
| where isnotempty(UncommonForUser)
| extend uncommonality_score = array_length(UncommonForUser)
// score is calculated as the number of uncommon resources on the event
| project uncommonality_score, ReportId, AccountId;
last_seen_scores | join kind=innerunique uncommonality_scores on ReportId and AccountId
| project-away ReportId1, AccountId1
| extend anomaly_score = last_seen_score + uncommonality_score
// joined scores
```

## See also

Expand Down
6 changes: 0 additions & 6 deletions CloudAppSecurityDocs/tutorial-ueba.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,6 @@ Defender for Cloud Apps uses the following to measure risk:

Select the investigation priority score for an alert or an activity to view the evidence that explains how Defender for Cloud Apps scored the activity.

> [!NOTE]
> We're gradually retiring the [**Investigation priority score increase**](investigate-anomaly-alerts.md#investigation-priority-score-increase-preview) alert from Microsoft Defender for Cloud Apps by August 2024. The investigation priority score and the procedure described in this article are not affected by this change.
>
> For more information, see [Investigation priority score increase deprecation timeline](investigate-anomaly-alerts.md#deprecation-timeline).

## Phase 1: Connect to the apps you want to protect<a name="connect-apps-protect"></a>

Connect at least one app to Microsoft Defender for Cloud Apps using the [API connectors](enable-instant-visibility-protection-and-governance-actions-for-your-apps.md). We recommend that you start by connecting [Microsoft 365](./connect-office-365.md).
Expand Down
2 changes: 1 addition & 1 deletion unified-secops-platform/TOC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
- name: Automated investigation and response in Microsoft Defender XDR
href: /defender-xdr/m365d-autoir?toc=/unified-secops-platform/toc.json&bc=/unified-secops-platform/breadcrumb/toc.json
- name: Optimize your security operations
href: /azure/sentinel/soc-optimization/soc-optimization-access?toc=/unified-secops-platform/toc.json&bc=/unified-secops-platform/breadcrumb/toc.json
href: /azure/sentinel/soc-optimization/soc-optimization-access?toc=/unified-secops-platform/toc.json&bc=/unified-secops-platform/breadcrumb/toc.json&tabs=defender-portal
- name: Manage your unified SOC
items:
- name: Manage multiple tenants
Expand Down
30 changes: 30 additions & 0 deletions unified-secops-platform/whats-new.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,36 @@ ms.topic: concept-article

This article lists recent features added into Microsoft's unified SecOps platform within the Microsoft Defender portal, and new features in related services that provide an enhanced user experience in the platform.

## January 2024

[SOC optimization updates for unified coverage management](#soc-optimization-updates-for-unified-coverage-management)

### SOC optimization updates for unified coverage management

In workspaces enabled for unified security operations, SOC optimziations now support both SIEM and XDR data, with detection coverage from across Microsoft Defender services.

In the Defender portal, the **SOC optimizations** and **MITRE ATT&CK** pages also now provide extra functionality for threat-based coverage optimiations to help you understand the impact of the recommendations on your environment and help you prioritize which to implement first.

Enhancements on the SOC optimizations **Overview** page include:

- A **High**, **Medium**, or **Low** score for your current detection coverage. This sort of scoring can help you decide which recommendations to prioritize at a glance.
- An indication of the number of active Microsoft Defender products (services) out of all available products. This helps you understand whether there's a whole product that you're missing in your environment.

Optimizations on an optimization details side pane, shown when you drill down to a specific optimization, include:

- Detailed coverage analysis, including the number of user-defined detections, response actions, and products you have active
- Detailed spider charts that show your coverage across different threat categories, for both user-defined and out-of-the-box detections.
- An option to jump to the specific threat scenario in the **MITRE ATT&CK** page instead of viewing MITRE ATT&CK coverage only in the side pane.
- An option to **View full threat scenario** to drill down to even further details about the security products and detections available to provide security coverage in your environment.

Enhancements for **MITRE ATT&CK** functionality include:

- A new toggle to view coverage by threat scenario. If you've jumped to the **MITRE ATT&CK** page from either a recommendation details side pane or from the **View full threat scenario** page, the **MITRE ATT&CK** page is pre-filtered for your threat scenario.

- The technique details pane, shown on the side when you select a specific MITRE ATT&CK technique, now shows the number of active detections out of all available detections for that technique.

For more information, see [Optimize your security operations](/azure/sentinel/soc-optimization/soc-optimization-access?toc=%2Funified-secops-platform%2Ftoc.json&bc=%2Funified-secops-platform%2Fbreadcrumb%2Ftoc.json&tabs=defender-portal) and [Understand security coverage by the MITRE ATT&CK framework](/azure/sentinel/mitre-coverage).

## December 2024

- [New SOC optimization recommendations based on similar organizations (Preview)](#new-soc-optimization-recommendations-based-on-similar-organizations-preview)
Expand Down

0 comments on commit 2c68dca

Please sign in to comment.