Microsoft SC-200 Security Operations Analyst 1-10

表示モード
画像位置
文字位置
理解度の自動記録
STATUS FILTER

Choose confidence levels to display

Loading...
Q1SC-200
Show answer
Correct answer: A. An Azure Event Hubs namespace

When sending Microsoft Graph activity logs to an external SIEM, real-time and scalable data ingestion is required.
The best fit for this requirement is Azure Event Hubs.
Event Hubs can continuously stream large volumes of logs and integrates easily with many SIEM products, so management effort is kept to a minimum.
Event Grid is meant for event notifications, storage is meant for archiving, and Log Analytics is meant for analysis, none of which are suited to direct streaming to an external SIEM.
Therefore, Event Hubs is the best choice for SIEM integration.
Diagnostic settings in Azure Monitor – Azure Monitor

Q2SC-200
Microsoft Teams

Linux virtual machine on Azure

Show answer
Correct answer: Office 365 / Syslog

Microsoft Teams is part of the Microsoft 365 services, so using the Office 365 connector is the most efficient way to collect its logs.
This lets you obtain audit logs in an integrated manner.
For monitoring the Linux virtual machine, OS-level log collection is required, so you use the Syslog connector.
Syslog is the standard log collection method in Linux environments and can be easily ingested into Sentinel through an agent.
This combination achieves efficient monitoring while minimizing additional configuration.
Microsoft Sentinel data connectors

Q3SC-200

Drag (or tap) the required number of items from the “Options” on the left into the “Answer area” on the right. You can drag items within the answer area to reorder them.

Options
  • Add the Syslog connector to the workspace
  • Add Microsoft Sentinel to the workspace
  • Install the Log Analytics agent on the Linux virtual machines
  • Add the Security Events connector to the workspace
  • Add a Microsoft Sentinel workbook
Answer area (execution order from top)
  1. Drag here

Show answer
Correct answer: Correct order: (1) Add Microsoft Sentinel to the workspace -> (2) Add the Syslog connector to the workspace -> (3) Install the Log Analytics agent on the Linux virtual machines

To collect logs from Linux virtual machines, you first add Microsoft Sentinel to the workspace to enable the monitoring foundation.
Next, you add the Syslog connector, which is the standard log collection method on Linux, to define log ingestion.
Finally, by installing the Log Analytics agent on each virtual machine, logs are actually sent to the workspace.
This order satisfies the dependencies and allows an efficient configuration.
Microsoft Sentinel data connectors

Q4SC-200
User Role Scope
User1 Contributor Subscription
User2 Contributor Subscription
User3 Security Reader Resource group
Name Log configuration Destination
AFW1 Unstructured logs Log Analytics
AFW2 Structured intrusion detection and prevention system (IDPS) logs Azure Event Hubs
AFW3 Structured intrusion detection and prevention system (IDPS) logs Log Analytics
User Copilot role
User1 Copilot Owner
User2 Copilot Contributor
User3 Copilot Owner
Statement Yes No
User1 can obtain the information for AFW1
User2 can obtain the information for AFW2
User3 can obtain the information for AFW3
Show answer
Correct answer: Statement 1 “Yes” / Statement 2 “No” / Statement 3 “Yes”

In Copilot for Security, you can directly reference only logs stored in Log Analytics.
Logs sent to Event Hubs are out of scope.
Referencing requires both Azure RBAC and a Copilot role.
User1 has Contributor and Copilot Owner, and because AFW1 uses Log Analytics, the information can be obtained.
For User2, because AFW2 uses Event Hubs, it cannot be referenced from Copilot and cannot be obtained.
User3 can still reference Log Analytics even with Security Reader, so the information for AFW3 can be obtained.
The combination of log destination and permissions is the key decision point.
Microsoft Sentinel data connectors

Q5SC-200
First dropdown

Second dropdown

Show answer
Correct answer: System / Keywords

In Windows security events, audit success and failure are distinguished by the Keywords field.
To extract only audit failures, you need to filter using Keywords within the System section.
EventData holds the detailed information of an event and is not suited to determining the audit type.
Therefore, specifying System/Keywords in the filter expression is the correct answer.
This lets you efficiently collect only failure events and reduce unnecessary logs.
Find your Microsoft Sentinel data connector

Q6SC-200
Defender plan to select

Method to exclude specific virtual machines

Show answer
Correct answer: Defender CSPM / Tagging

Agentless scanning and disk snapshot analysis are features provided by the Defender CSPM plan.
Therefore, you must first select CSPM as the Defender plan.
Also, when targeting only specific virtual machines, you need to control the scope with policy, and the simplest method is exclusion configuration using tagging.
RBAC is access control and is not suited to controlling scan targets.
By combining CSPM with tags, you can efficiently scan only the required VMs.
Enable agentless scanning for virtual machines – Microsoft Defender for Cloud | Microsoft Learn

Q7SC-200
Show answer
Correct answer: A. Configure advanced audit policy settings on the domain controllers, D. Configure Windows Event Forwarding on the domain controllers

To detect changes to sensitive groups, you must first enable advanced audit policy on the domain controllers to record account management events.
This generates audit logs of group changes.
In addition, to aggregate those logs into Sentinel or Defender for Identity, you configure Windows Event Forwarding so they can be collected centrally.
Changing OU permissions or configuring Microsoft 365 auditing is not directly related to collecting Active Directory security events.
Therefore, these two are the essential requirements for detecting changes.
Find your Microsoft Sentinel data connector

Q8SC-200

Drag each option to the matching requirement’s drop zone, or tap to place it. Click a filled zone to send it back. (The same option may be used more than once.)

_Im_ProcessCreate
imProcessCreate
vimProcessCreate
Call all ProcessCreate parsers
Normalize fields to the process schema
Show answer
Correct answer: Call all ProcessCreate parsers -> _Im_ProcessCreate / Normalize fields to the process schema -> imProcessCreate

ASIM uses unifying parsers and source-specific parsers together.
To call all ProcessCreate parsers, you use _Im_ProcessCreate.
This is a unifying parser that spans multiple data sources and returns standardized results.
On the other hand, to normalize fields to the process schema, you use imProcessCreate.
This normalizes data from an individual source into the ASIM schema.
This combination achieves both unified retrieval and schema normalization.
Normalization and the Advanced Security Information Model (ASIM)

Q9SC-200
Show answer
Correct answer: A. Workbook Contributor

Microsoft Sentinel workbooks are an Azure Monitor feature, and deploying or editing templates requires the Workbook Contributor role.
This role grants only the permission to create and edit workbooks and does not affect other resources, so it satisfies the principle of least privilege.
Microsoft Sentinel Contributor and Contributor include excessive permissions, and Automation Contributor is intended for playbooks and is inappropriate.
Therefore, assigning the workbook-specific role is the correct answer.
Azure Workbooks overview – Azure Monitor

Q10SC-200
Join method

Table to join

Show answer
Correct answer: join kind=inner / IdentityInfo

To leverage UEBA, you need to join user attribute information, so you use the IdentityInfo table.
This lets you filter by attributes such as department.
Also, to reduce false positives, you use an inner join that strictly joins only common users.
With leftouter, unnecessary data may be included.
Therefore, joining SecurityEvent and IdentityInfo with an inner join and narrowing to non-IT department members achieves high-precision detection.
Microsoft Sentinel User and Entity Behavior Analytics (UEBA) reference