SC-200 Exam QuestionsBrowse all questions from this exam

SC-200 Exam - Question 1


DRAG DROP -

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.

Select and Place:

Show Answer
Correct Answer:

Discussion

17 comments
Sign in to comment
DigitalNomad
Oct 6, 2021

DeviceLogonEvents | where DeviceName in ("CFOLaptop" , "CEOLaptop" ) and ActionType == "LogonFailed" | summarize LogonFailures=count() by DeviceName , LogonType This is the correct answer , I tested it .

Startkabels
Oct 11, 2021

If you tested it I will go with you!

CatoFong
Jul 25, 2022

DigitalNomad is correct.

Xyz_40
Sep 2, 2022

I concur

sasasach
Mar 11, 2023

correct.

ReffG
Aug 26, 2021

I think the third box is answered wrong. ActionType == "LogonFailed" should be the correct answer.

bidaker
Mar 20, 2024

Thrilled to announce my success in the SC-200 exam Their comprehensive materials and practice tests were instrumental in my preparation journey. https://pin.it/69fXkZQJ6

gyaansastra
Jan 3, 2023

Only 3 types of ActionType exist based on the schema. Try yourself with a long time range (e.g below last 14days) DeviceLogonEvents | where TimeGenerated >= ago(14d) | distinct ActionType Result: LogonSuccess LogonFailed LogonAttempted That should clear the doubts that "LogonFailed" is the correct option, not "FailureReason". Strongly suggest going through the official schema and the actual query for validation.

arunrider
Oct 12, 2022

Tested, ActionType == LogonFailed

Pandaguo
Apr 10, 2022

DeviceLogonEvents |where Devicename in ("CFOlaptops", "CEOLaptop") and ActionType == "LogonFailed" |summarize LoginFailures=count() by DeviceName, LogonType

Apocalypse03
Dec 16, 2022

The correct answer is: DeviceLogonEvents | where DeviceName in ("CFOLaptop", "CEOLaptop", "COOLaptop") and ActionType == FailureReason |s summarize LogonFailures=count () by DeviceName, LogonType Here is a brief explanation of how this query works: The DeviceLogonEvents table is selected, which contains logon events for devices. The where clause filters the events to only include those that have a DeviceName of CFOLaptop, CEOLaptop, or COOLaptop, and an ActionType of FailureReason. This effectively filters the events to only include failed logon events from the specified devices. The summarize clause counts the number of events that match the previous criteria, grouping the results by DeviceName and LogonType. The count() function counts the number of events in each group, and the LogonFailures alias is used to label this count in the resulting output.

EricChu
Dec 29, 2022

How can a reason be an action???? Action type is a reason, did you hear yourself?

AJ2021
Feb 8, 2023

Question in Exam today

altecer
Feb 11, 2023

On exam 2-11-2023

BhanuD
Nov 16, 2022

Under DeviceLogonEvents schema, below are the ActionType values available and FailureReason is the column in the schema that can be fetched ActionType values: LogonAttempted LogonFailed LogonSuccess and hence the answer is ActionType == 'LogonFailed' ; also a string should be mentioned in a single or double quotes

mimguy
Jul 7, 2023

On the test July 7 2023

mc250616
Nov 11, 2023

Hi All, Checked again in real environment. Shown answer is not correct as Failure Reason is not one fo the ActionTypes and no result by this search. Correct Answer is ; -------------- DeviceLogonEvents | where DeviceName in ("CFOLaptop" , "CEOLaptop", "COOLaptop") and ActionType == "LogonFailed" | summarize LogonFailures=count() by DeviceName , LogonType

Vamshi_Pasham
Mar 24, 2024

In given answer, ActionType should be "LogonFailed".

cyber_mks
Mar 27, 2023

correct Answer is DeviceLogonEvents | where DeviceName in ("CFOLaptop", "CEOLaptop", "COOLaptop") and ActionType == FailureReason |s summarize LogonFailures=count () by DeviceName, LogonType

NathanZ
Jul 19, 2023

Correct answer should be: ActionType="LogonFailed". When running this query, there is no any result returned. DeviceLogonEvents | where ActionType == FailureReason

chepeerick
Oct 21, 2023

Correct

Hawklx
Jul 16, 2024

Please fix this answer