Exam Flashcards

1
Q

You are investigating an incident by using Microsoft 365 Defender. You n

You are investigating an incident by using Microsoft 365 Defender. You need to create an advanced hunting query to count failed sign-in authentications on three devices named CFOLaptop, CEOLaptop, and COOLaptop.

How should you complete the query? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.How should you complete the query? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Values:

  1. | project LogonFailures=count()
  2. | summarize LogonFailures=count() by DeviceName, LogonType
  3. | where ActionType == FailureReason
  4. | where DeviceName in ("CFOLaptop", "CEOLaptop", "COOLaptop")
  5. ActionType == "LogonFailed"
  6. ActionType == FailureReason
  7. DeviceEvents
  8. DeviceLogonEvents
A
  1. DeviceLogonEvents
  2. | where DeviceName in ("CFOLaptop", "CEOLaptop", "COOLaptop")
  3. ActionType == FailureReason
  4. | summarize LogonFailures=count() by DeviceName, LogonType
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

You need to receive a security alert when a user attempts to sign in from a location that was never used by the other users in your organization to sign in.

Which anomaly detection policy should you use?

A. Impossible travel
B. Activity from anonymous IP addresses
C. Activity from infrequent country
D. Malware detection

A

C. Activity from infrequent country

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

You have a Microsoft 365 subscription that uses Microsoft Defender for Office 365. You have Microsoft SharePoint Online sites that contain sensitive documents. The documents contain customer account numbers that each consists of 32 alphanumeric characters.

You need to create a data loss prevention (DLP) policy to protect the sensitive documents.

What should you use to detect which documents are sensitive?
A. SharePoint search
B. a hunting query in Microsoft 365 Defender
C. Azure Information Protection
D. RegEx pattern matching

A

D. RegEx pattern matching

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Your company uses line-of-business apps that contain Microsoft Office VBA macros. You need to prevent users from downloading and running additional payloads from the Office VBA macros as additional child processes. Which two commands can you run to achieve the goal? Each correct answer presents a complete solution.

NOTE: Each correct selection is worth one point.

A.
Add-MpPreference -AttackSurfaceReductionRules_Ids D4F940AB-401B-4EFC-AADC-AD5F3C50688A -AttackSurfaceReductionRules_Actions Enabled

B.
Set-MpPreference -AttackSurfaceReductionRules_Ids D4F940AB-401B-4EFC-AADC-AD5F3C50688A -AttackSurfaceReductionRules_Actions AuditMode

C.
Add-MpPreference -AttackSurfaceReductionRules_Ids D4F940AB-401B-4EFC-AADC-AD5F3C50688A -AttackSurfaceReductionRules_Actions AuditMode

D.
Set-MpPreference -AttackSurfaceReductionRules_Ids D4F940AB-401B-4EFC-AADC-AD5F3C50688A -AttackSurfaceReductionRules_Actions Enabled

A

A.
Add-MpPreference -AttackSurfaceReductionRules_Ids D4F940AB-401B-4EFC-AADC-AD5F3C50688A -AttackSurfaceReductionRules_Actions Enabled

D.
Set-MpPreference -AttackSurfaceReductionRules_Ids D4F940AB-401B-4EFC-AADC-AD5F3C50688A -AttackSurfaceReductionRules_Actions Enabled

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Your company uses Microsoft Defender for Endpoint. The company has Microsoft Word documents that contain macros. The documents are used frequently on the devices of the company’s accounting team. You need to hide false positive in the Alerts queue, while maintaining the existing security posture. Which three actions should you perform? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

A. Resolve the alert automatically.
B. Hide the alert.
C. Create a suppression rule scoped to any device.
D. Create a suppression rule scoped to a device group.
E. Generate the alert.

A

B, D, E

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Your company uses Microsoft Defender for Endpoint. The company has Microsoft Word documents that contain macros. The documents are used frequently on the devices of the company’s accounting team.
You need to hide false positive in the Alerts queue, while maintaining the existing security posture. Which three actions should you perform? Each correct answer presents part of the solution.

NOTE: Each correct selection is worth one point.

A. Resolve the alert automatically.
B. Hide the alert.
C. Create a suppression rule scoped to any device.
D. Create a suppression rule scoped to a device group.
E. Generate the alert.

A

B. Hide the alert.
D. Create a suppression rule scoped to a device group.
E. Generate the alert.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Your environment does NOT have Microsoft Defender for Endpoint enabled. You need to remediate the risk for the Launchpad app. Which four actions should you perform in sequence?

  1. Tag the app as Unsanctioned.
  2. Run the script on the source appliance.
  3. Run the script in Azure Cloud Shell.
  4. Select the app.
  5. Tag the app as Sanctioned.
  6. Generate a block script.
A

Select the app.
Tag the app as Unsanctioned.
Generate a block script.
Run the script on the source appliance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

You have a Microsoft 365 E5 subscription. You plan to perform cross-domain investigations by using Microsoft 365 Defender. You need to create an advanced hunting query to identify devices affected by a malicious email attachment. How should you complete the query? To answer, select the appropriate options in the answer area.

EmailAttachmentInfo
| where SenderFromAddress =~ "MaliciousSender@example.com"
| where isnotempty(SHA256)
| \_\_\_ (
     DeviceFileEvents
    | \_\_\_ (FileName, SHA256)
 ) on SHA256
| \_\_\_ NetworkMessageId, SenderFromAddress, RecipientEmailAddress
A

join
project
project

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

You need to receive an alert when any process disables System Restore on a device managed by Microsoft Defender during the last 24 hours.
Which two actions should you perform? Each correct answer presents part of the solution.

DeviceProcessEvents
| where Timestamp > ago(24h)
  and InitiatingProcessFileName =~ 'rundll32.exe'
  and InitiatingProcessCommandLine !contains " " and InitiatingProcessCommandLine != ""
  and FileName in~ ('schtasks.exe')
  and ProcessCommandLine has 'Change' and ProcessCommandLine has 'SystemRestore'
  and ProcessCommandLine has 'disable'
| project Timestamp, AccountName, ProcessCommandLine

A. Create a detection rule.
B. Create a suppression rule.
C. Add | order by Timestamp to the query.
D. Replace DeviceProcessEvents with DeviceNetworkEvents.
E. Add DeviceId and ReportId to the output of the query.

A

A. Create a detection rule.
E. Add DeviceId and ReportId to the output of the query.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

You are investigating a potential attack that deploys a new ransomware strain. You have three custom device groups. The groups contain devices that store highly sensitive information. You plan to perform automated actions on all devices. You need to be able to temporarily group the machines to perform actions on the devices. Which three actions should you perform? Each correct answer presents part of the solution.

A. Assign a tag to the device group.
B. Add the device users to the admin role.
C. Add a tag to the machines.
D. Create a new device group that has a rank of 1.
E. Create a new admin role.
F. Create a new device group that has a rank of 4.

A

A. Assign a tag to the device group.
C. Add a tag to the machines.
D. Create a new device group that has a rank of 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are configuring Microsoft Defender for Identity integration with Active Directory. From the Microsoft Defender for identity portal, you need to configure several accounts for attackers to exploit.

Solution: From Entity tags, you add the accounts as Honeytoken accounts.

Does this meet the goal?

A. Yes
B. No

A

A. Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

You are configuring Microsoft Defender for Identity integration with Active Directory. From the Microsoft Defender for identity portal, you need to configure several accounts for attackers to exploit.

Solution: From Azure AD Identity Protection, you configure the sign-in risk policy.

Does this meet the goal?

A. Yes
B. No

A

B. No

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

You are configuring Microsoft Defender for Identity integration with Active Directory. From the Microsoft Defender for identity portal, you need to configure several accounts for attackers to exploit.

Solution: You add the accounts to an Active Directory group and add the group as a Sensitive group.

Does this meet the goal?

A. Yes
B. No

A

B. No

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

You implement Safe Attachments policies in Microsoft Defender for Office 365. Users report that email messages containing attachments take longer than expected to be received. You need to reduce the amount of time it takes to deliver messages that contain attachments without compromising security. The attachments must be scanned for malware, and any messages that contain malware must be blocked.

What should you configure in the Safe Attachments policies?
A. Dynamic Delivery
B. Replace
C. Block and Enable redirect
D. Monitor and Enable redirect

A

A. Dynamic Delivery

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

You receive a security bulletin about a potential attack that uses an image file. You need to create an indicator of compromise (IoC) in Microsoft Defender for Endpoint to prevent the attack.

Which indicator type should you use?

A. a URL/domain indicator that has Action set to Alert only
B. a URL/domain indicator that has Action set to Alert and block
C. a file hash indicator that has Action set to Alert and block
D. a certificate indicator that has Action set to Alert and block

A

C. a file hash indicator that has Action set to Alert and block

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Your company deploys the following services:
✑ Microsoft Defender for Identity
✑ Microsoft Defender for Endpoint
✑ Microsoft Defender for Office 365

You need to provide a security analyst with the ability to use the Microsoft 365 security center. The analyst must be able to approve and reject pending actions generated by Microsoft Defender for Endpoint. The solution must use the principle of least privilege.

Which two roles should assign to the analyst?
A. the Compliance Data Administrator in Azure Active Directory (Azure AD)
B. the Active remediation actions role in Microsoft Defender for Endpoint
C. the Security Administrator role in Azure Active Directory (Azure AD)
D. the Security Reader role in Azure Active Directory (Azure AD)

A

B. the Active remediation actions role in Microsoft Defender for Endpoint
D. the Security Reader role in Azure Active Directory (Azure AD)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

You need to configure Microsoft Cloud App Security to generate alerts and trigger remediation actions in response to external sharing of confidential files. Which two actions should you perform in the Cloud App Security portal? Each correct answer presents part of the solution.

A. From Settings, select Information Protection, select Azure Information Protection, and then select Only scan files for Azure Information Protection classification labels and content inspection warnings from this tenant.
B. Select Investigate files, and then filter App to Office 365.
C. Select Investigate files, and then select New policy from search.
D. From Settings, select Information Protection, select Azure Information Protection, and then select Automatically scan new files for Azure Information Protection classification labels and content inspection warnings.
E. From Settings, select Information Protection, select Files, and then enable file monitoring.
F. Select Investigate files, and then filter File Type to Document.

A

D. From Settings, select Information Protection, select Azure Information Protection, and then select Automatically scan new files for Azure Information Protection classification labels and content inspection warnings.
E. From Settings, select Information Protection, select Files, and then enable file monitoring.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Your company has a single office in Istanbul and a Microsoft 365 subscription. The company plans to use conditional access policies to enforce multi-factor authentication (MFA). You need to enforce MFA for all users who work remotely.

What should you include in the solution?

A. a fraud alert
B. a user risk policy
C. a named location
D. a sign-in user policy

A

C. a named location

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

You are configuring Microsoft Cloud App Security. You have a custom threat detection policy based on the IP address ranges of your company’s United States-based offices. You receive many alerts related to impossible travel and sign-ins from risky IP addresses. You determine that 99% of the alerts are legitimate sign-ins from your corporate offices.
You need to prevent alerts for legitimate sign-ins from known locations.
Which two actions should you perform? Each correct answer presents part of the solution.

A. Configure automatic data enrichment.
B. Add the IP addresses to the corporate address range category.
C. Increase the sensitivity level of the impossible travel anomaly detection policy.
D. Add the IP addresses to the other address range category and add a tag.
E. Create an activity policy that has an exclusion for the IP addresses.

A

B. Add the IP addresses to the corporate address range category.
E. Create an activity policy that has an exclusion for the IP addresses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

You are configuring Microsoft Defender for Identity integration with Active Directory. From the Microsoft Defender for identity portal, you need to configure several accounts for attackers to exploit.

Solution: You add each account as a Sensitive account.
Does this meet the goal?

A. Yes
B. No

A

B. No

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

You have a Microsoft 365 tenant that uses Microsoft Exchange Online and Microsoft Defender for Office 365. What should you use to identify whether zero-hour auto purge (ZAP) moved an email message from the mailbox of a user?

A. the Threat Protection Status report in Microsoft Defender for Office 365
B. the mailbox audit log in Exchange
C. the Safe Attachments file types report in Microsoft Defender for Office 365
D. the mail flow report in Exchange

A

A. the Threat Protection Status report in Microsoft Defender for Office 365

23
Q

You have a Microsoft 365 subscription that contains 1,000 Windows 10 devices. The devices have Microsoft Office 365 installed.
You need to mitigate the following device threats:
✑ Microsoft Excel macros that download scripts from untrusted websites
✑ Users that open executable attachments in Microsoft Outlook
✑ Outlook rules and forms exploits
What should you use?

A. Microsoft Defender Antivirus
B. attack surface reduction rules in Microsoft Defender for Endpoint
C. Windows Defender Firewall
D. adaptive application control in Azure Defender

A

B. attack surface reduction rules in Microsoft Defender for Endpoint

24
Q

You have a third-party security information and event management (SIEM) solution. You need to ensure that the SIEM solution can generate alerts for Azure Active Directory (Azure AD) sign-events in near real time.
What should you do to route events to the SIEM solution?

A. Create an Azure Sentinel workspace that has a Security Events connector.
B. Configure the Diagnostics settings in Azure AD to stream to an event hub.
C. Create an Azure Sentinel workspace that has an Azure Active Directory connector.
D. Configure the Diagnostics settings in Azure AD to archive to a storage account.

A

B. Configure the Diagnostics settings in Azure AD to stream to an event hub.

25
You have an Azure subscription linked to an Azure Active Directory (Azure AD) tenant. The tenant contains two users named User1 and User2. You plan to deploy Azure Defender. You need to enable User1 and User2 to perform tasks at the subscription level as shown in the following table: User 1 Tasks: - Assign initiatives - Edit security policies - Enable automatic provisioning User 2 Tasks: - View alerts & recommendations - Apply security recommendations - Dismiss alerts The solution must use the principle of least privilege. **Which role should you assign to each user?** Each role may be used once, more than once, or not at all. Roles: - Contributor - Owner - Security Administrator - Security Reader
User 1: Owner - only owner can assign initiatives User 2: Contributor - only contributor can apply security recommendations
26
You have a Microsoft 365 E5 subscription that contains 200 Windows 10 devices enrolled in Microsoft Defender for Endpoint. You need to ensure that users can access the devices by using a remote shell connection directly from the Microsoft 365 Defender portal. The solution must use the principle of least privilege. **What should you do in the Microsoft 365 Defender portal?** To configure MDE: A. Turn on endpoint detection and response in block mode B. Turn on Live Response C. Turn off Tamper Protection To configure the devices: A. Add a network assessment job B. Create a device group that contains the devices and set Automation level to full C. Create a device group that contains the devices and set Automation level to No automated response
B. Turn on Live Response --- A. Add a network assessment job
27
You have a Microsoft 365 subscription that uses Microsoft 365 Defender and contains a user named User1. You are notified that the account of User1 is compromised. You need to review the alerts triggered on the devices to which User1 signed in. **How should you complete the query?** To answer, select the appropriate options in the answer area. ``` DeviceInfo | where LoggedOnUsers contains 'user1' | distinct DeviceId | ____________ kind=inner AlertEvidence on DeviceId | project AlertId | join AlertInfo on AlertId | _____________ AlertId, Timestamp, Title, Severity, Category ```
join project
28
You have a Microsoft 365 E5 subscription that uses Microsoft SharePoint Online. You delete users from the subscription. You need to be notified if the deleted users downloaded numerous documents from SharePoint Online sites during the month before their accounts were deleted. **What should you use?** A. a file policy in Microsoft Defender for Cloud Apps B. an access review policy C. an alert policy in Microsoft Defender for Office 365 D. an insider risk policy
D. an insider risk policy
29
You have a Microsoft 365 subscription that has Microsoft 365 Defender enabled. You need to identify all the changes made to sensitivity labels during the past seven days. **What should you use?** A. the Incidents blade of the Microsoft 365 Defender portal B. the Alerts settings on the Data Loss Prevention blade of the Microsoft 365 compliance center C. Activity explorer in the Microsoft 365 compliance center D. the Explorer settings on the Email & collaboration blade of the Microsoft 365 Defender portal
C. Activity explorer in the Microsoft 365 compliance center
30
You have a Microsoft 365 subscription that uses Microsoft 365 Defender. You need to identify all the entities affected by an incident. **Which tab should you use in the Microsoft 365 Defender portal?** A. Investigations B. Devices C. Evidence and Response D. Alerts
C. Evidence and Response
31
You have a Microsoft 365 E5 subscription that is linked to a hybrid Azure AD tenant. You need to identify all the changes made to Domain Admins group during the past 30 days. **What should you use?** A. the Modifications of sensitive groups report in Microsoft Defender for Identity B. the identity security posture assessment in Microsoft Defender for Cloud Apps C. the Azure Active Directory Provisioning Analysis workbook D. the Overview settings of Insider risk management
A. the Modifications of sensitive groups report in Microsoft Defender for Identity
32
You have a Microsoft 365 subscription. The subscription uses Microsoft 365 Defender and has data loss prevention (DLP) policies that have aggregated alerts configured. You need to identify the impacted entities in an aggregated alert. **What should you review in the DLP alert management dashboard of the Microsoft 365 compliance center?** A. the Events tab of the alert B. the Sensitive Info Types tab of the alert C. Management log D. the Details tab of the alert
A. the Events tab of the alert
33
You have a Microsoft 365 subscription that uses Microsoft 365 Defender. You plan to create a hunting query from Microsoft Defender. You need to create a custom tracked query that will be used to assess the threat status of the subscription. **From the Microsoft 365 Defender portal, which page should you use to create the query?** A. Threat analytics B. Advanced Hunting C. Explorer D. Policies & rules
B. Advanced Hunting
34
You have a Microsoft 365 subscription that uses Microsoft Defender for Endpoint. You need to add threat indicators for all the IP addresses in a range of 171.23.34.32-171.23.34.63. The solution must minimize administrative effort. **What should you do in the Microsoft 365 Defender portal?** A. Create an import file that contains the individual IP addresses in the range. Select Import and import the file. B. Create an import file that contains the IP address of 171.23.34.32/27. Select Import and import the file. C. Select Add indicator and set the IP address to 171.23.34.32-171.23.34.63. D. Select Add indicator and set the IP address to 171.23.34.32/27.
A. Create an import file that contains the individual IP addresses in the range. Select Import and import the file.
35
You have an Azure subscription that uses Microsoft Defender for Endpoint. You need to ensure that you can allow or block a user-specified range of IP addressed and URLs. **What should you enable first in the Advanced features from the Endpoints Settings in the Microsoft 365 Defender portal?** A. custom network indicators B. live response for servers C. endpoint detection and response (EDR) in block mode D. web content filtering
A. custom network indicators
36
You have an Azure subscription that contains the users shown: User1 - Security Administrator User2 - Security Reader User3 - Contributor You need to delegate the following tasks: - Enable Microsoft Defender for Servers on virtual machines. - Review security recommendations and enable server vulnerability scans. The solution must use the principle of least privilege. **Which user should perform each task?** Each user may be used once, more than once, or not at all.
User1 - Security Administrator for both
37
Your company has an on-premises network that uses Microsoft Defender for Identity. The Microsoft Secure Score for the company includes a security assessment associated with unsecure Kerberos delegation. You need remediate the security risk. **What should you do?** A. Disable legacy protocols on the computers listed as exposed entities. B. Enforce LDAP signing on the computers listed as exposed entities. C. Modify the properties of the computer objects listed as exposed entities. D. Install the Local Administrator Password Solution (LAPS) extension on the computers listed as exposed entities.
C. Modify the properties of the computer objects listed as exposed entities.
38
You have a Microsoft 365 subscription that uses Microsoft 365 Defender. A remediation action for an automated investigation quarantines a file across multiple devices. You need to mark the file as safe and remove the file from quarantine on the devices. **What should you use in the Microsoft 365 Defender portal?** A. From the History tab in the Action center, revert the actions. B. From the investigation page, review the AIR processes. C. From Quarantine from the Review page, modify the rules. D. From Threat tracker, review the queries.
A. From the History tab in the Action center, revert the actions.
39
You have a Microsoft 365 E5 subscription that uses Microsoft 365 Defender. You need to review new attack techniques discovered by Microsoft and identify vulnerable resources in the subscription. The solution must minimize administrative effort. **Which blade should you use in the Microsoft 365 Defender portal?** A. Advanced hunting B. Threat analytics C. Incidents & alerts D. Learning hub
B. Threat analytics
40
# Overview Fabrikam, Inc. is a financial services company. The company has branch offices in New York, London, and Singapore. Fabrikam has remote users located across the globe. The remote users access company resources, including cloud resources, by using a VPN connection to a branch office. # Identity Environment The network contains an Active Directory Domain Services (AD DS) forest named fabrikam.com that syncs with an Azure AD tenant named fabrikam.com. To sync the forest, Fabrikam uses Azure AD Connect with pass-through authentication enabled and password hash synchronization disabled. The fabrikam.com forest contains two global groups named Group1 and Group2. # Microsoft365 Environment All the users at Fabrikam are assigned a Microsoft 365 E5 license and an Azure Active Directory Premium Plan 2 license. Fabrikam implements Microsoft Defender for Identity and Microsoft Defender for Cloud Apps and enables log collectors. # Azure Environment Fabrikam has an Azure subscription that contains the resources shown in the following table. - App1 - Azure Logic App - To automate incident generation in an internal ticketing system, the security operations team invokes App1 by using an HTTP endpoint - SAWkspc1 - Azure Synapse Analytics workspace - hosts an Apache Spark pool named Pool1. - LAWkspc1 - Log Analytics workspace - will be used in a planned Microsoft Sentinel implementation # AWS Environment Fabrikam has an Amazon Web Services (AWS) account named Account1. Account1 contains 100 Amazon Elastic Compute Cloud (EC2) instances that run a custom Windows Server 2022. The image includes Microsoft SQL Server 2019 and does NOT have any agents installed. # Current Issues When the users use the VPN connections, Microsoft 365 Defender raises a high volume of impossible travel alerts that are false positives. Defender for Identity raises a high volume of Suspected DCSync attack alerts that are false positives. Fabrikam plans to implement the following services: - Microsoft Defender for Cloud - Microsoft Sentinel Fabrikam identifies the following business requirements: - Use the principle of least privilege, whenever possible. - Minimize administrative effort. Fabrikam identifies the following Microsoft Defender for Cloud Apps requirements: - Ensure that impossible travel alert policies are based on the previous activities of each user. - Reduce the amount of impossible travel alerts that are false positives. Fabrikam identifies the following Microsoft Defender for Identity requirements: - Minimize the administrative effort required to investigate the false positive alerts. Fabrikam identifies the following Microsoft Defender for Cloud requirements: - Ensure that the members of Group2 can modify security policies. - Ensure that the members of Group1 can assign regulatory compliance policy initiatives at the Azure subscription level. - Automate the deployment of the Azure Connected Machine agent for Azure Arc-enabled servers to the existing and future resources of Account1. - Minimize the administrative effort required to investigate the false positive alerts. Fabrikam identifies the following Microsoft Sentinel requirements: - Query for NXDOMAIN DNS requests from the last seven days by using built-in Advanced Security Information Model (ASIM) unifying parsers. - From AWS EC2 instances, collect Windows Security event log entries that include local group membership changes. - Identify anomalous activities of Azure AD users by using User and Entity Behavior Analytics (UEBA). - Evaluate the potential impact of compromised Azure AD user credentials by using UEBA. - Ensure that App1 is available for use in Microsoft Sentinel automation rules. - Identify the mean time to triage for incidents generated during the last 30 days. - Identify the mean time to close incidents generated during the last 30 days. - Ensure that the members of Group1 can create and run playbooks. - Ensure that the members of Group1 can manage analytics rules. - Run hunting queries on Pool1 by using Jupyter notebooks. - Ensure that the members of Group2 can manage incidents. - Maximize the performance of data queries. - Minimize the amount of collected data. You need to minimize the effort required to investigate the Microsoft Defender for Identity false positive alerts. **What should you review?** A. the status update time B. the resolution method of the source computer C. the alert status D. the certainty of the source computer
D. the certainty of the source computer
41
You have a Microsoft 365 E5 subscription that uses Microsoft Defender 365. You need to ensure that you can investigate threats by using data in the unified audit log of Microsoft Defender for Cloud Apps. **What should you configure first?** A. the User enrichment settings B. the Azure connector C. the Office 365 connector D. the Automatic log upload settings
C. the Office 365 connector
42
You have a custom detection rule that includes the following KQL query. ``` AlertInfo | where Severity == "High" | distinct AlertId | join AlertEvidence on AlertId | where EntityType in ("User", "Mailbox") | where EvidenceRole == "Impacted" | summarize by Timestamp, AlertId, AccountName, AccountObjectId, EntityType, DeviceId, SHA256 | join EmailEvents on $left.AccountObjectId == $right.RecipientObjectId | where DeliveryAction == "Delivered" | summarize by Timestamp, AlertId, ReportId, RecipientObjectId, RecipientEmailAddress, EntityType, DeviceId, SHA256 ``` **For each of the following statements, select Yes if True. Otherwise, select No.** - The custom detection rule can be used to automate the deletion of email messages from a user’s mailbox based on the RecipientEmailAddress column. - The custom detection rule can be used to restrict app execution automatically based on the DeviceId column. - The custom detection rule can be used to automate the deletion of a file based on the SHA256 column.
- YES - The custom detection rule can be used to automate the deletion of email messages from a user’s mailbox based on the RecipientEmailAddress column. - NO - The custom detection rule can be used to restrict app execution automatically based on the DeviceId column. - NO - The custom detection rule can be used to automate the deletion of a file based on the SHA256 column.
43
You have an Azure subscription that uses Microsoft Defender for Servers Plan 1 and contains a server named Server1. You enable agentless scanning. You need to prevent Server1 from being scanned. The solution must minimize administrative effort. **What should you do?** A. Create an exclusion tag. B. Upgrade the subscription to Defender for Servers Plan 2. C. Create a governance rule. D. Create an exclusion group.
A. Create an exclusion tag.
44
You have a Microsoft 365 E5 subscription that uses Microsoft Defender for Endpoint. You need to identify any devices that triggered a malware alert and collect evidence related to the alert. The solution must ensure that you can use the results to initiate device isolation for the affected devices. What should you use in the Microsoft 365 Defender portal? A. incidents B. Remediation C. Investigations D. Advanced hunting
D. Advanced hunting
45
You have a Microsoft 365 E5 subscription that uses Microsoft Purview and contains a user named User1. User1 shares a Microsoft Power BI report file from the Microsoft OneDrive folder of your company to an external user by using Microsoft Teams. You need to identify which Power BI report file was shared. How should you configure the search? To answer, select the appropriate options in the answer area. Activities: - Copied file - Downloaded files to computer - Share file, folder, or site - Shared Power BI report Record type: - MicrosoftTeams - OneDrive - PowerBiAudit - Shared Power BI report Workload: - MicrosoftTeams - OneDrive - PowerBi - SharePoint
- Share file, folder, or site - Shared Power BI report - MicrosoftTeams
46
Litware Inc. is a renewable energy company. Litware has offices in Boston and Seattle. Litware also has remote users located across the United States. To access Litware resources, including cloud resources, the remote users establish a VPN connection to either office. The network contains an Active Directory forest named litware.com that syncs to an Azure Active Directory (Azure AD) tenant named litware.com. Litware has a Microsoft 365 E5 subscription linked to the litware.com Azure AD tenant. Microsoft Defender for Endpoint is deployed to all computers that run Windows 10. All Microsoft Defender for Cloud Apps built-in anomaly detection policies are enabled. Litware has an Azure subscription linked to the litware.com Azure AD tenant. The subscription contains resources in the East US Azure region as shown in the following table. LA1 - Log Analytics workspace - contains logs and metrics collected from all Azure resources and on-premises servers VM1 - VM - Server that runs Windows Server 2019 VM2 - VM - Server that runs Ubuntu 18.04 LTS Each Litware office connects directly to the internet and has a site-to-site VPN connection to the virtual networks in the Azure subscription. The on-premises network contains the computers shown in the following table. DC1 - Windows Server 2019 - Boston - DC in litware.com that connects directly to the internet CLIENT1 - Windows 10 - Boston - Domain-joined client computer # Current Problems Microsoft Defender for Cloud Apps frequently generates false positive alerts when users connect to both offices simultaneously. Litware plans to implement the following changes: * Create and configure Microsoft Sentinel in the Azure subscription. * Validate Microsoft Sentinel functionality by using Azure AD test user accounts. Litware identifies the following business requirements: * The principle of least privilege must be used whenever possible. * Costs must be minimized, as long as all other requirements are met. * Logs collected by Log Analytics must provide a full audit trail of user activities. * All domain controllers must be protected by using Microsoft Defender for Identity. All files that have sensitivity labels and are stored on the Windows 10 computers must be available from the Azure Information Protection – Data discovery dashboard. All Microsoft Defender for Cloud Apps unsanctioned apps must be blocked on the Windows 10 computers by using Microsoft Defender for Endpoint. Microsoft Defender for Cloud Apps must identify whether a user connection is anomalous based on tenant-level data. All servers must send logs to the same Log Analytics workspace. Litware must meet the following Microsoft Sentinel requirements: * Integrate Microsoft Sentinel and Microsoft Defender for Cloud Apps. * Ensure that a user named admin1 can configure Microsoft Sentinel playbooks. * Create a Microsoft Sentinel analytics rule based on a custom query. The rule must automatically initiate the execution of a playbook. * Add notes to events that represent data access from a specific IP address to provide the ability to reference the IP address when navigating through an investigation graph while hunting. * Create a test rule that generates alerts when inbound access to Microsoft Office 365 by the Azure AD test user accounts is detected. Alerts generated by the rule must be grouped into individual incidents, with one incident per test user account. You need to configure DC1 to meet the business requirements. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. 1. Provide domain administrator credentials to the litware.com Active Directory domain. 2. Create an instance of Microsoft Defender for Identity. 3. Provide global administrator credentials to the litware.com Azure AD tenant. 4. Install the sensor on DC1. 5. Install the standalone sensor on DC1.
2. Create an instance of Microsoft Defender for Identity. 3. Provide global administrator credentials to the litware.com Azure AD tenant. 4. Install the sensor on DC1.
47
You have a Microsoft 365 subscription that uses Microsoft Purview and Microsoft Teams. You have a team named Team1 that has a project named Project1. You need to identify any Project1 files that were stored on the team site of Team1 between February 1, 2023, and February 10, 2023. **Which KQL query should you run?** A. (c:c)(Project1)(date=(2023-02-01)..date=(2023-02-10)) B. AuditLogs - | where Timestamp between (datetime(2023-02-01)..datetime(2023-02-10)) | where FileName contains “Project1” C. Project1(c:c)(date=2023-02-01..2023-02-10) D. AuditLogs - | where Timestamp > ago(10d) | where FileName contains “Project1”
C. Project1(c:c)(date=2023-02-01..2023-02-10)
48
You have a Microsoft 365 E5 subscription that uses Microsoft Defender for Endpoint. You need to create a query that will link the AlertInfo, AlertEvidence, and DeviceLogonEvents tables. The solution must return all the rows in the tables. **Which operator should you use?** A. search * B. union kind = inner C. join kind = inner D. evaluate hint.remote =
B. union kind = inner
49
You have a Microsoft 365 E5 subscription that contains 100 Windows 10 devices. You onboard the devices to Microsoft Defender 365. You need to ensure that you can initiate remote shell connections to the onboarded devices from the Microsoft 365 Defender portal. **What should you do first?** A. Modify the permissions for Microsoft 365 Defender. B. Create a device group. C. From Advanced features in the Endpoints settings of the Microsoft 365 Defender portal, enable automated investigation. D. Configure role-based access control (RBAC).
B. Create a device group.
50
You have a Microsoft 365 E5 subscription that uses Microsoft Teams. You need to perform a content search of Teams chats for a user by using the Microsoft Purview compliance portal. The solution must minimize the scope of the search. How should you configure the content search? To answer, select the appropriate options in the answer area. Locations: - Exchange Mailboxes - Exchange public folders - SharePoint sites Keywords: - Category - ItemClass - Kind
Locations: - **Exchange Mailboxes** - Exchange public folders - SharePoint sites Keywords: - Category - ItemClass - **Kind**
51
You have a Microsoft 365 E5 subscription that contains 100 Linux devices. The devices are onboarded to Microsoft Defender 365. You need to initiate the collection of investigation packages from the devices by using the Microsoft 365 Defender portal. Which response action should you use? A. Run antivirus scan B. Initiate Automated Investigation C. Collect investigation package D. Initiate Live Response Session
C. Collect investigation package
52
You need to configure Microsoft Defender for Cloud Apps to generate alerts and trigger remediation actions in response to external sharing of confidential files. Which two actions should you perform in the Microsoft 365 Defender portal? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point. A. From Settings, select Cloud App, select Microsoft Information Protection, and then select Only scan files for Microsoft Information Protection sensitivity labels and content inspection warnings from this tenant. B. From Cloud apps, select Files, and then filter File Type to Document. C. From Settings, select Cloud App, select Microsoft Information Protection, select Files, and then enable file monitoring. D. From Cloud apps, select Files, and then filter App to Office 365. E. From Cloud apps, select Files, and then select New policy from search. F. From Settings, select Cloud App, select Microsoft Information Protection, and then select Automatically scan new files for Microsoft Information Protection sensitivity labels and content inspection warnings.
C. From Settings, select Cloud App, select Microsoft Information Protection, select Files, and then enable file monitoring. F. From Settings, select Cloud App, select Microsoft Information Protection, and then select Automatically scan new files for Microsoft Information Protection sensitivity labels and content inspection warnings.
53
You have a Microsoft 365 subscription that uses Microsoft Purview. Your company has a project named Project1. You need to identify all the email messages that have the word Project1 in the subject line. The solution must search only the mailboxes of users that worked on Project1. What should you do? A. Perform a user data search. B. Create a records management disposition. C. Perform an audit search. D. Perform a content search.
D. Perform a content search.