Which type of task can be used to create a decision tree in a playbook?
Answer : D
The correct answer is D -- Conditional.
Conditional tasks are used in Cortex XSIAM playbooks to create decision trees. They enable branching logic based on the outcome of previous steps, allowing the playbook to automatically choose different paths and actions depending on analysis results, alert types, or input values.
'Conditional tasks in playbooks enable the construction of decision trees, supporting dynamic response automation based on pre-defined criteria and branching logic.'
Document Reference: XSIAM Analyst ILT Lab Guide.pdf
Page: Page 38 (Automation and Playbooks section)
Why would an analyst schedule an XQL query?
Answer : B
The correct answer is B -- To retrieve data either at specific intervals or at a specified time.
Scheduling XQL queries allows analysts and teams to automate the retrieval of data at regular intervals or specific times (such as daily, hourly, or during set windows), supporting reporting, monitoring, and automation workflows without requiring manual intervention.
'Analysts can schedule XQL queries to automatically retrieve data or generate reports at regular intervals or specified times.'
Document Reference: EDU-270c-10-lab-guide_02.docx (1).pdf
Page: Page 25 (Data Analysis with XQL section)
===========
How can a SOC analyst highlight alerts generated on C-level executive hosts?
Answer : A
The correct answer is A -- Add the C-level executive users to the Executive Accounts asset role.
By assigning C-level executives to the Executive Accounts asset role, any alerts generated from those accounts or devices are highlighted and given higher visibility in Cortex XSIAM.
''Adding C-level users to the Executive Accounts asset role ensures that related alerts are highlighted and prioritized.''
Document Reference: XSIAM Analyst ILT Lab Guide.pdf
Page: Page 49 (Asset and User Management section)
An analyst conducting a threat hunt needs to collect multiple files from various endpoints. The analyst begins the file retrieval process by using the Action Center, but upon review of the retrieved files, notices that the list is incomplete and missing files, including kernel files.
What could be the reason for the issue?
Answer : A
The correct answer is A -- The file retrieval policy applied to the endpoints may restrict access to certain system or kernel files.
Cortex XSIAM and XDR implement security policies and permissions that may restrict the retrieval of sensitive system files, including kernel files, for safety and compliance reasons. When a file retrieval action is initiated, the endpoint policy controls which files are accessible; kernel and other protected files are often excluded from remote retrieval actions to prevent accidental or unauthorized access.
'The file retrieval policy controls which files can be remotely collected from endpoints. Sensitive files, such as kernel or system files, may be restricted by policy and are not accessible through standard remote retrieval actions.'
Document Reference: EDU-270c-10-lab-guide_02.docx (1).pdf
Exact Page: Page 13 (Agent Deployment and Configuration section)
What can be used to filter out empty values in the query results table?
Answer : C
The correct answer is C -- <name of field> != null or <field name> != 'NA'.
Filtering with != null removes records with null values, and != 'NA' further removes records that explicitly have 'NA' as the value, ensuring the table only displays meaningful results.
'Use filters like <field> != null or <field> != 'NA' in XQL queries to exclude empty or placeholder values from results.'
Document Reference: XSIAM Analyst ILT Lab Guide.pdf
Page: Page 22 (XQL section)
===========
An on-demand malware scan of a Windows workstation using the Cortex XDR agent is successful and detects three malicious files. An analyst attempts further investigation of the files by right-clicking on the scan result, selecting "Additional data," then "View related alerts," but no alerts are reported.
What is the reason for this outcome?
Answer : B
The correct answer is B. The malware scan action detects malicious files but does not generate alerts for them.
In Cortex XSIAM and XDR, an on-demand malware scan effectively identifies malicious files on an endpoint. However, such scans typically record their findings directly in the scan results without generating separate alerts. Alerts are generally created through real-time protection mechanisms or detection rules, not through manually triggered scans.
Exact Reference from Official Document:
'The on-demand malware scan capability is designed to detect and identify malicious files but does not automatically generate alerts for those files. Alerts are primarily generated through real-time endpoint protection policies and detection rules.'
Therefore, the absence of alerts despite successful malware detection is due to the designed behavior of on-demand scans.
=====================
Which two statements apply to IOC rules? (Choose two)
Answer : A, D
Correct answers are A and D.
Option A (Correct): IOC rules within Cortex XSIAM can detect specific indicators such as files, registry keys, IP addresses, hashes, and URLs.
Option D (Correct): IOC rules can indeed be uploaded or updated programmatically using REST APIs, enabling automation and bulk management.
Options B and C are incorrect due to the following reasons:
Expiration dates for IOC rules vary depending on system settings, and there is no strict 180-day limit explicitly defined in the provided documentation.
IOC rules are managed through general alert exclusion mechanisms as well as through suppression rules.
'IOC rules can detect specific files, hashes, registry keys, IP addresses, and URLs and can be managed programmatically via REST API.'
Document Reference: EDU-270c-10-lab-guide_02.docx (1).pdf
Exact Page: Page 33 (Alerting and Detection section)