2026 Latest Palo Alto Networks XDR-Engineer Real Exam Dumps PDF [Q37-Q55]

Share

2026 Latest Palo Alto Networks XDR-Engineer Real Exam Dumps PDF

XDR-Engineer Exam Dumps, XDR-Engineer Practice Test Questions

NEW QUESTION # 37
A query is created that will run weekly via API. After it is tested and ready, it is reviewed in the Query Center. Which available column should be checked to determine how many compute units will be used when the query is run?

  • A. Compute Unit Usage
  • B. Compute Unit Quota
  • C. Query Status
  • D. Simulated Compute Units

Answer: D

Explanation:
In Palo Alto Networks Cortex XSIAM / Cortex XDR, when you create and save an XQL query to run via API or a scheduled job, the system calculates its performance and resource impact.
Simulated Compute Units: This column in the Query Center provides an estimated or simulated value of the compute resources (Compute Units) that the query is expected to consume based on its complexity, the size of the targeted datasets, and its structure. Checking this column allows administrators to predict and manage their API consumption and credit burn before putting the query into production.


NEW QUESTION # 38
Which XQL query can be saved as a behavioral indicator of compromise (BIOC) rule, then converted to a custom prevention rule?

  • A. dataset = xdr_data
    | filter event_type = FILE and (event_sub_type = FILE_CREATE_NEW or event_sub_type = FILE_WRITE or event_sub_type = FILE_REMOVE or event_sub_type = FILE_RENAME) and agent_hostname = "hostname"
    | filter lowercase(action_file_path) in ("/etc/*", "/usr/local/share/*", "/usr/share/*") and action_file_extension in ("conf", "txt")
    | fields action_file_name, action_file_path, action_file_type, agent_ip_addresses, agent_hostname, action_file_path
  • B. dataset = xdr_data
    | filter event_type = ENUM.PROCESS and event_type = ENUM.DEVICE and
    action_process_image_name = "**"
    and action_process_image_command_line = "-e cmd*"
    and action_process_image_command_line != "*cmd.exe -a /c*"
  • C. dataset = xdr_data
    | filter event_type = ENUM.PROCESS and action_process_image_name = "**" and action_process_image_command_line = "-e cmd*" and action_process_image_command_line != "*cmd.exe -a /c*"
  • D. dataset = xdr_data
    | filter event_type = ENUM.DEVICE and action_process_image_name = "**"
    and action_process_image_command_line = "-e cmd*"
    and action_process_image_command_line != "*cmd.exe -a /c*"

Answer: C

Explanation:
In Cortex XDR, aBehavioral Indicator of Compromise (BIOC)rule defines a specific pattern of endpoint behavior (e.g., process execution, file operations, or network activity) that can trigger an alert. BIOCs are often created usingXQL (XDR Query Language)queries, which are then saved as BIOC rules to monitor for the specified behavior. To convert a BIOC into acustom prevention rule, the BIOC must be associated with a Restriction profile, which allows the defined behavior to be blocked rather than just detected. For a query to be suitable as a BIOC and convertible to a prevention rule, it must meet the following criteria:
* It must monitor a behavior that Cortex XDR can detect on an endpoint, such as process execution, file operations, or device events.
* The behavior must be actionable for prevention (e.g., blocking a process or file operation), typically involving events like process launches (ENUM.PROCESS) or file modifications (ENUM.FILE).
* The query should not include overly complex logic (e.g., multiple event types with conflicting conditions) that cannot be translated into a BIOC rule.
Let's analyze each query to determine which one meets these criteria:
* Option A: dataset = xdr_data | filter event_type = ENUM.DEVICE ...This query filters for event_type = ENUM.DEVICE, which relates to device-related events (e.g., USB device connections).
While device events can be monitored, the additional conditions (action_process_image_name = "**" and action_process_image_command_line) are process-related attributes, which are typically associated with ENUM.PROCESS events, not ENUM.DEVICE. This mismatch makes the query invalid for a BIOC, as it combines incompatible event types and attributes. Additionally, device events are not typically used for custom prevention rules, as prevention rules focus on blocking processes or fileoperations, not device activities.
* Option B: dataset = xdr_data | filter event_type = ENUM.PROCESS and event_type = ENUM.
DEVICE ...This query attempts to filter for events that are both ENUM.PROCESS and ENUM.
DEVICE (event_type = ENUM.PROCESS and event_type = ENUM.DEVICE), which is logically incorrect because an event cannot have two different event types simultaneously. In XQL, the event_type field must match a single type (e.g., ENUM.PROCESS or ENUM.DEVICE), and combining them with an and operator results in no matches. This makes the query invalid for creating a BIOC rule, as it will not return any results and cannot be used for detection or prevention.
* Option C: dataset = xdr_data | filter event_type = FILE ...This query monitors file-related events (event_type = FILE) with specific sub-types (FILE_CREATE_NEW, FILE_WRITE, FILE_REMOVE, FILE_RENAME) on a specific hostname, targeting file paths (/etc/*, /usr/local/share/*, /usr/share/*) and extensions (conf, txt). While this query can be saved as a BIOC to detect file operations, it is not ideal for conversion to a custom prevention rule. Cortex XDR prevention rules typically focus on blocking process executions (via Restriction profiles), not file operations. While file-based BIOCs can generate alerts, converting them to prevention rules is less common, as Cortex XDR's prevention mechanisms are primarily process-oriented (e.g., terminating a process), not file-oriented (e.g., blocking a file write). Additionally, the query includes complex logic (e.g., multiple sub-types, lowercase() function, fields clause), which may not fully translate to a prevention rule.
* Option D: dataset = xdr_data | filter event_type = ENUM.PROCESS ...This query monitors process execution events (event_type = ENUM.PROCESS) where the process image name matches a pattern (action_process_image_name = "**"), the command line includes -e cmd*, and excludes commands matching *cmd.exe -a /c*. This query is well-suited for a BIOC rule, as it defines a specific process behavior (e.g., a process executing with certain command-line arguments) that Cortex XDR can detect on an endpoint. Additionally, this type of BIOC can be converted to a custom prevention rule by associating it with aRestriction profile, which can block the process execution if the conditions are met. For example, the BIOC can be configured to detect processes with action_process_image_name =
"**" and action_process_image_command_line = "-e cmd*", and a Restriction profile can terminate such processes to prevent the behavior.
Correct Answer Analysis (D):
Option D is the correct choice because it defines a process-based behavior (ENUM.PROCESS) that can be saved as a BIOC rule to detect the specified activity (processes with certain command-line arguments). It can then be converted to a custom prevention rule by adding it to a Restriction profile, which will block the process execution when the conditions are met. The query's conditions are straightforward and compatible with Cortex XDR's BIOC and prevention framework, making it the best fit for the requirement.
Exact Extract or Reference:
TheCortex XDR Documentation Portalexplains BIOC and prevention rules: "XQL queries monitoring process events (ENUM.PROCESS) can be saved as BIOC rules to detect specific behaviors, and these BIOCs can be added to a Restriction profile to create custom prevention rules that block the behavior" (paraphrased from the BIOC and Restriction Profile sections). TheEDU-260: Cortex XDR Prevention and Deployment course covers BIOC creation, stating that "process-based XQL queries are ideal for BIOCs and can be converted to prevention rules via Restriction profiles to block executions" (paraphrased from course materials). ThePalo Alto Networks Certified XDR Engineer datasheetincludes "detection engineering" as a key exam topic, encompassing BIOC rule creation and conversion to prevention rules.
References:
Palo Alto Networks Cortex XDR Documentation Portal:https://docs-cortex.paloaltonetworks.com/ EDU-260: Cortex XDR Prevention and Deployment Course Objectives Palo Alto Networks Certified XDR Engineer Datasheet:https://www.paloaltonetworks.com/services/education
/certification#xdr-engineer


NEW QUESTION # 39
An XDR engineer is creating a correlation rule to monitor login activity on specific systems. When the activity is identified, an alert is created. The alerts are being generated properly but are missing the username when viewed. How can the username information be included in the alerts?

  • A. Update the query in the correlation rule to include the username field
  • B. Select "Initial Access" in the MITRE ATT&CK mapping to include the username
  • C. Add a mapping for the username field in the alert fields mapping
  • D. Add a drill-down query to the alert which pulls the username field

Answer: C

Explanation:
In Cortex XDR,correlation rulesare used to detect specific patterns or behaviors (e.g., login activity) by analyzing ingested data and generating alerts when conditions are met. For an alert to include specific fields likeusername, the field must be explicitly mapped in thealert fields mappingconfiguration of the correlation rule. This mapping determines which fields from theunderlying dataset are included in the generated alert's details.
In this scenario, the correlation rule is correctly generating alerts for login activity, but theusernamefield is missing. This indicates that the correlation rule's query may be identifying the relevant events, but the usernamefield is not included in the alert's output fields. To resolve this, the engineer must update thealert fields mappingin the correlation rule to explicitly include theusernamefield, ensuring it appears in the alert details when viewed.
* Correct Answer Analysis (C):Adding a mapping for theusernamefield in thealert fields mapping ensures that the field is extracted from the dataset and included in the alert's metadata. This is done in the correlation rule configuration, where administrators can specify which fields to include in the alert output.
* Why not the other options?
* A. Select "Initial Access" in the MITRE ATT&CK mapping to include the username:
Mapping to a MITRE ATT&CK technique like "Initial Access" defines the type of attack or behavior, not specific fields likeusername. This does not address the missing field issue.
* B. Update the query in the correlation rule to include the username field: While the correlation rule's query must reference theusernamefield to detect relevant events, including it in the query alone does not ensure it appears in the alert's output. Thealert fields mappingis still required.
* D. Add a drill-down query to the alert which pulls the username field: Drill-down queries are used for additional investigation after an alert is generated, not for including fields in the alert itself. This does not solve the issue of missingusernamein the alert details.
Exact Extract or Reference:
TheCortex XDR Documentation Portaldescribes correlation rule configuration: "To include specific fields in generated alerts, configure the alert fields mapping in the correlation rule to map dataset fields, such as username, to the alert output" (paraphrased from the Correlation Rules section). TheEDU-262: Cortex XDR Investigation and Responsecourse covers detection engineering, stating that "alert fields mapping determines which data fields are included in alerts generated by correlation rules" (paraphrased from course materials). ThePalo Alto Networks Certified XDR Engineer datasheetincludes "detection engineering" as a key exam topic, encompassing correlation rule configuration.
References:
Palo Alto Networks Cortex XDR Documentation Portal:https://docs-cortex.paloaltonetworks.com/ EDU-262: Cortex XDR Investigation and Response Course Objectives Palo Alto Networks Certified XDR Engineer Datasheet:https://www.paloaltonetworks.com/services/education
/certification#xdr-engineer


NEW QUESTION # 40
An analyst considers an alert with the category of lateral movement to be allowed and not needing to be checked in the future. Based on the image below, which action can an engineer take to address the requirement?

  • A. Create an exception rule for the parent process and the exact command indicated in the alert
  • B. Create a disable injection and prevention rule for the parent process indicated in the alert
  • C. Create a behavioral indicator of compromise (BIOC) suppression rule for the parent process and the specific BIOC: Lateral movement
  • D. Create an alert exclusion rule by using the alert source and alert name

Answer: D

Explanation:
When an analyst determines that a specific alert (such as a lateral movement warning) is benign or represents authorized activity, and wants to prevent it from cluttering the incident console moving forward, Cortex XDR provides a streamlined workflow known as Alert Exclusion Rules.
Targeted Suppression: Alert exclusion rules allow you to define precise matching criteria using the Alert Source (e.g., Cortex XDR Analytics or BIOC) and the Alert Name.
Global or Scope-Specific: This ensures that identical, safe alerts matching those exact identifiers will be automatically filtered out and suppressed before they can generate noisy incidents in the future.


NEW QUESTION # 41
Based on the image of a validated false positive alert below, which action is recommended for resolution?

  • A. Create an exception for OUTLOOK.EXE for ROP Mitigation Module
  • B. Disable an action to the CGO Process DWWIN.EXE
  • C. Create an alert exclusion for OUTLOOK.EXE
  • D. Create an exception for the CGO DWWIN.EXE for ROP Mitigation Module

Answer: A

Explanation:
By analyzing the alert row columns in the screenshot, we can extract the exact operational data needed to formulate the resolution:
MODULE: ROP Mitigation
INITIATED BY: OUTLOOK.EXE
CGO NAME (Causality Group Owner): DWWIN.EXE (Dr. Watson Windows Error Reporting utility) When an exploit prevention security module trips on a legitimate process (a validated false positive), creating an alert exclusion (triage only) is insufficient because the agent is still actively interrupting the application's functionality. You must configure an exploit exception rule.
In Cortex XDR, exploit protection exceptions must be assigned to the process that initiated the execution chain or was targeted by the exploit technique, rather than the secondary utilities spun up during a crash event (like DWWIN.EXE). Therefore, you create a targeted exploit exception specifying OUTLOOK.EXE as the application process and ROP Mitigation as the specific defense module to bypass.


NEW QUESTION # 42
A static endpoint group is created by adding 321 endpoints using the Upload From File feature.
However, after group creation, the members count field shows 244 endpoints. What are two possible reasons why endpoints were not added to the group? (Choose two.)

  • A. Endpoints added to the new group were previously added to an existing group
  • B. The IP address, hostname, or alias of the endpoints must match an existing agent that has registered with the tenant
  • C. Endpoints added to the group were in Disconnected or Connection Lost status when groupmembership was added
  • D. Static groups have a limit of 250 endpoints when adding by file

Answer: A,B

Explanation:
In Cortex XDR, an endpoint can only belong to one static group at a time. If endpoints listed in the upload file are already members of an existing static group, they cannot be added to the new group and will be excluded from the count. This would explain why fewer endpoints (244) appear in the group than were specified in the file (321) - those 77 endpoints were already assigned to another static group.
When using the Upload From File feature, Cortex XDR matches the entries in the file against existing registered agents in the tenant using identifiers such as:
IP address
Hostname
Alias
If any entry in the file does not match an agent that has already registered with the tenant, that endpoint is simply not added to the group. Unregistered, decommissioned, or incorrectly identified endpoints will be silently skipped, reducing the actual member count below the expected number.


NEW QUESTION # 43
An engineer is building a dashboard to visualize the number of alerts from various sources. One of the widgets from the dashboard is shown in the image below:

The engineer wants to configure a drilldown on this widget to allow dashboard users to select any of the alert names and view those alerts with additional relevant details. The engineer has configured the following XQL query to meet the requirement:
dataset = alerts
| fields alert_name, description, alert_source, severity,
original_tags, alert_id, incident_id
| filter alert_name =
| sort desc _time
How will the engineer complete the third line of the query (filter alert_name =) to allow dynamic filtering on a selected alert name?

  • A. $y_axis.name
  • B. $x_axis.value
  • C. $y_axis.value
  • D. $x_axis.name

Answer: B

Explanation:
For a chart drilldown, the clicked chart category is passed as the x-axis value, and Cortex XDR's drilldown variables documentation says $x_axis.value captures the clicked x-axis value for filtering.
In this case, the alert names are the chart categories being selected, so the query should use the clicked x-axis value to dynamically filter alert_name.


NEW QUESTION # 44
How can a customer ingest additional events from a Windows DHCP server into Cortex XDR with minimal configuration?

  • A. Install the XDR Collector
  • B. Activate Windows Event Collector (WEC)
  • C. Install the Cortex XDR agent
  • D. Enable HTTP collector integration

Answer: A

Explanation:
To ingest additional events from a Windows DHCP server into Cortex XDR with minimal configuration, the recommended approach is to use theCortex XDR Collector. TheXDR Collectoris a lightweight component designed to collect and forward logs and events from various sources, including Windows servers, to Cortex XDR for analysis and correlation. It is specifically optimized for scenarios where full Cortex XDR agent deployment is not required, and it minimizes configuration overhead by automating much of the data collection process.
For a Windows DHCP server, the XDR Collector can be installed on the server to collect DHCP logs (e.g., lease assignments, renewals, or errors) from the Windows Event Log or other relevant sources. Once installed, the collector forwards these events to the Cortex XDR tenant with minimal setup, requiring only basic configuration such as specifying the target data types and ensuring network connectivity to the Cortex XDR cloud. This approach is more straightforward than alternatives like setting up a full agent or configuring external integrations like Windows Event Collector (WEC) or HTTP collectors, which require additional infrastructure or manual configuration.
* Why not the other options?
* A. Activate Windows Event Collector (WEC): While WEC can collect events from Windows servers, it requires significant configuration, including setting up a WEC server, configuring subscriptions, and integrating with Cortex XDR via a separate ingestion mechanism. This is not minimal configuration.
* C. Enable HTTP collector integration: HTTP collector integration is used for ingesting data via HTTP/HTTPS APIs, which is not applicable for Windows DHCP server events, as DHCP logs are typically stored in the Windows Event Log, not exposed via HTTP.
* D. Install the Cortex XDR agent: The Cortex XDR agent is a full-featured endpoint protection and detection solution that includes prevention, detection, and responsecapabilities. While it can collect some event data, it is overkill for the specific task of ingesting DHCP server events and requires more configuration than the XDR Collector.
Exact Extract or Reference:
TheCortex XDR Documentation Portaldescribes theXDR Collectoras a tool for "collecting logs and events from servers and endpoints with minimal setup" (paraphrased from the Data Ingestion section). TheEDU-260:
Cortex XDR Prevention and Deploymentcourse emphasizes that "XDR Collectors are ideal for ingesting server logs, such as those from Windows DHCP servers, with streamlined configuration" (paraphrased from course materials). ThePalo Alto Networks Certified XDR Engineer datasheetlists "data source onboarding and integration configuration" as a key skill, which includes configuring XDR Collectors for log ingestion.
References:
Palo Alto Networks Cortex XDR Documentation Portal:https://docs-cortex.paloaltonetworks.com/ EDU-260: Cortex XDR Prevention and Deployment Course Objectives Palo Alto Networks Certified XDR Engineer Datasheet:https://www.paloaltonetworks.com/services/education
/certification#xdr-engineer


NEW QUESTION # 45
How are dynamic endpoint groups created and managed in Cortex XDR?

  • A. Endpoint groups are defined based on fields such as OS type, OS version, and network segment
  • B. Each endpoint can belong to multiple groups simultaneously, allowing different security policies to be applied to the same device at the same time
  • C. Endpoint groups require intervention to update the group with new endpoints when a new device is added to the network
  • D. After an endpoint group is created, its assigned security policy cannot be changed without deleting and recreating the group

Answer: A

Explanation:
In Cortex XDR,dynamic endpoint groupsare used to organize endpoints for applying security policies, managing configurations, and streamlining operations. These groups are defined based on dynamic criteria, such asOS type,OS version,network segment,hostname, or other endpoint attributes. When a new endpoint is added to the network, it is automatically assigned to the appropriate group(s) based on these criteria, without manual intervention. This dynamic assignment ensures that security policies are consistently applied to endpoints matching the group's conditions.
* Correct Answer Analysis (D):The optionDaccurately describes how dynamic endpoint groups are created and managed. Administrators define groups using filters based on endpoint attributes like operating system (e.g., Windows, macOS, Linux), OS version (e.g., Windows 10 21H2), or network segment (e.g., subnet or domain). These filters are evaluated dynamically, so endpoints are automatically added or removed from groups as their attributes change or new devices are onboarded.
* Why not the other options?
* A. Endpoint groups require intervention to update the group with new endpoints when a new device is added to the network: This is incorrect because dynamic endpoint groups are designed to automatically include new endpoints that match the group's criteria, without manual intervention.
* B. Each endpoint can belong to multiple groups simultaneously, allowing different security policies to be applied to the same device at the same time: This is incorrect because, in Cortex XDR, an endpoint is assigned to a single endpoint group for policy application to avoid conflicts.
While endpoints can match multiple group criteria, the system uses a priority or hierarchy to assign the endpoint to onegroup for policy enforcement.
* C. After an endpoint group is created, its assigned security policy cannot be changed without deleting and recreating the group: This is incorrect because Cortex XDR allows administrators to modify the security policy assigned to an endpoint group without deleting and recreating the group.
Exact Extract or Reference:
TheCortex XDR Documentation Portalexplains endpoint group management: "Dynamic endpoint groups are created by defining filters based on endpoint attributes such as OS type, version, or network segment.
Endpoints are automatically assigned to groups based on these criteria" (paraphrased from the Endpoint Management section). TheEDU-260: Cortex XDR Prevention and Deploymentcourse covers endpoint group configuration, stating that "groups are dynamically updated as endpoints join or leave the network based on defined attributes" (paraphrased from course materials). ThePalo Alto Networks Certified XDR Engineer datasheetincludes "endpoint management and policy configuration" as a key exam topic, which encompasses dynamic endpoint groups.
References:
Palo Alto Networks Cortex XDR Documentation Portal:https://docs-cortex.paloaltonetworks.com/ EDU-260: Cortex XDR Prevention and Deployment Course Objectives Palo Alto Networks Certified XDR Engineer Datasheet:https://www.paloaltonetworks.com/services/education
/certification#xdr-engineer


NEW QUESTION # 46
Which method will drop undesired logs and reduce the amount of data being ingested?

  • A. [COLLECT:vendor="vendor", product="product", target_dataset="", no_hit=drop] * drop _raw_log contains "undesired logs";
  • B. [COLLECT:vendor="vendor", product="product", target_brokers="", no_hit=drop] * drop _raw_log contains "undesired logs";
  • C. [INGEST:vendor="vendor", product="product", target_brokers="vendor_product_raw", no_hit=keep] * filter _raw_log not contains "undesired logs";
  • D. [INGEST:vendor="vendor", product="product", target_dataset="vendor_product_raw",no_hit=drop] * filter _raw_log not contains "undesired logs";

Answer: A

Explanation:
In Cortex XDR, managing data ingestion involves defining rules to collect, filter, or drop logs to optimize storage and processing. The goal is todrop undesired logsto reduce the amount of data ingested. The syntax used in the options appears to be a combination of ingestion rule metadata (e.g., [COLLECT] or [INGEST]) and filtering logic, likely written in a simplified query language for log processing. Thedropaction explicitly discards logs matching a condition, whilefilterwithnot containscan achieve similar results by keeping only logs that do not match the condition.
* Correct Answer Analysis (C):The method in option C,[COLLECT:vendor="vendor", product=" product", target_dataset="", no_hit=drop] * drop _raw_log contains "undesired logs";, explicitly dropslogs where the raw log content contains "undesired logs". The [COLLECT] directive defines the log collection scope (vendor, product, and dataset), and the no_hit=drop parameter indicates that unmatched logs are dropped. The drop _raw_log contains "undesired logs" statement ensures that logs matching the "undesired logs" pattern are discarded, effectively reducing the amount of data ingested.
* Why not the other options?
* A. [COLLECT:vendor="vendor", product="product", target_brokers="", no_hit=drop] * drop _raw_log contains "undesired logs";: This is similar to option C but uses target_brokers="", which is typically used for Broker VM configurations rather than direct dataset ingestion. While it could work, option C is more straightforward with target_dataset="".
* B. [INGEST:vendor="vendor", product="product", target_dataset="
vendor_product_raw", no_hit=drop] * filter _raw_log not contains "undesired logs";: This method uses filter _raw_log not contains "undesired logs" to keep logs that do not match the condition, which indirectly drops undesired logs. However, the drop action in option C is more explicit and efficient for reducing ingestion.
* D. [INGEST:vendor="vendor", product="product", target_brokers="
vendor_product_raw", no_hit=keep] * filter _raw_log not contains "undesired logs";: The no_hit=keep parameter means unmatched logs are kept, which does not align with the goal of reducing data. The filter statement reduces data, but no_hit=keep may counteract this by retaining unmatched logs, making this less effective than option C.
Exact Extract or Reference:
TheCortex XDR Documentation Portalexplains log ingestion rules: "To reduce data ingestion, use the drop action to discard logs matching specific patterns, such as _raw_log contains 'pattern'" (paraphrased from the Data Ingestion section). TheEDU-260: Cortex XDR Prevention and Deploymentcourse covers data ingestion optimization, stating that "dropping logs with specific content using drop _raw_log contains is an effective way to reduce ingested data volume" (paraphrased from course materials). ThePalo Alto Networks Certified XDR Engineer datasheetincludes "data ingestion and integration" as a key exam topic, encompassing log filtering and dropping.
References:
Palo Alto Networks Cortex XDR Documentation Portal:https://docs-cortex.paloaltonetworks.com/ EDU-260: Cortex XDR Prevention and Deployment Course Objectives Palo Alto Networks Certified XDR Engineer Datasheet:https://www.paloaltonetworks.com/services/education
/certification#xdr-engineer


NEW QUESTION # 47
Which step is required to configure a proxy for an XDR Collector?

  • A. Connect the XDR Collector to the Pathfinder
  • B. Restart the XDR Collector after configuring the proxy settings
  • C. Edit the YAML configuration file with the new proxy information
  • D. Configure the proxy settings on the Cortex XDR tenant

Answer: C

Explanation:
XDR Collector proxy settings are configured locally by editing the collector's YAML configuration file with the required proxy details. This allows the collector to route its communications through the specified proxy.


NEW QUESTION # 48
A new parsing rule is created, and during testing and verification, all the logs for which field data is to be parsed out are missing. All the other logs from this data source appear as expected. What may be the cause of this behavior?

  • A. The filter stage is dropping the logs
  • B. The XDR Collector is dropping the logs
  • C. The parsing rule corrupted the database
  • D. The Broker VM is offline

Answer: A

Explanation:
When configuring custom log ingestion and data modeling in Cortex XDR/XSIAM, Parsing Rules dictate how raw text logs are broken down into specific schema fields (such as IP addresses, timestamps, or usernames).
A parsing rule typically begins with a filter stage (such as a SQL-like filter or regex condition) to isolate and match only the specific log subtypes that need processing out of a broader data stream. If this filter condition is misconfigured, overly restrictive, or contains a typo, the parsing engine will fail to match any incoming records. Instead of parsing them incorrectly, it will drop or exclude those specific logs from the final dataset, while allowing all other unmapped logs from that same vendor source to stream in completely untouched.


NEW QUESTION # 49
What happens when two or more values are specified for a disable prevention rule in Cortex XDR to allow file execution?

  • A. The rule automatically applies to all files regardless of their properties.
  • B. The rule applies if the file satisfies any of the specified target properties.
  • C. The exception is applied if the file satisfies all of the specified target properties.
  • D. The rule is ignored if multiple values are specified for the target properties.

Answer: C

Explanation:
A disable prevention rule is applied only when the file matches all specified target properties. This keeps the exception narrowly scoped so only the intended executable is allowed to run.


NEW QUESTION # 50
How long is data kept in the temporary hot storage cache after being queried from cold storage?

  • A. 1 hour, re-queried to a maximum of 12 hours
  • B. 1 hour, re-queried to a maximum of 24 hours
  • C. 24 hours, re-queried to a maximum of 7 days
  • D. 24 hours, re-queried to a maximum of 14 days

Answer: C

Explanation:
In Cortex XDR, data is stored in different tiers:hot storage(for recent, frequently accessed data),cold storage (for older, less frequently accessed data), and atemporary hot storage cachefor data retrieved from cold storage during queries. When data is queried from cold storage, it is moved to the temporary hot storage cache to enable faster access for subsequent queries. The question asks how long this data remains in the cache and the maximum duration for re-queries.
* Correct Answer Analysis (B):Data retrieved from cold storage is kept in the temporary hot storage cache for24 hours. If the data is re-queried within this period, it remains accessible in the cache. The maximum duration for re-queries is7 days, after which the data may need to be retrieved from cold storage again, incurring additional processing time.
* Why not the other options?
* A. 1 hour, re-queried to a maximum of 12 hours: These durations are too short and do not align with Cortex XDR's data retention policies for the hot storage cache.
* C. 24 hours, re-queried to a maximum of 14 days: While the initial 24-hour cache duration is correct, the 14-day maximum for re-queries is too long and not supported by Cortex XDR's documentation.
* D. 1 hour, re-queried to a maximum of 24 hours: The 1-hour initial cache duration is incorrect, as Cortex XDR retains queried data for 24 hours.
Exact Extract or Reference:
TheCortex XDR Documentation Portalexplains data storage: "Data queried from cold storage is cached in hot storage for 24 hours, with a maximum re-query period of 7 days" (paraphrased from the Data Management section). TheEDU-262: Cortex XDR Investigation and Responsecourse covers data retention, stating that "queried cold storage data remains in the hot cache for 24 hours, accessible for up to 7 days with re-queries" (paraphrased from course materials). ThePalo Alto Networks Certified XDR Engineer datasheetincludes "maintenance and troubleshooting" as a key exam topic, encompassing data storage management.
References:
Palo Alto Networks Cortex XDR Documentation Portal:https://docs-cortex.paloaltonetworks.com/ EDU-262: Cortex XDR Investigation and Response Course Objectives Palo Alto Networks Certified XDR Engineer Datasheet:https://www.paloaltonetworks.com/services/education
/certification#xdr-engineer


NEW QUESTION # 51
Which statement describes the functionality of fixed filters and dashboard drilldowns in enhancing a dashboard's interactivity and data insights?

  • A. Fixed filters let users select predefined or dynamic values to adjust the scope, while dashboard drilldowns provide interactive insights or trigger contextual changes, like linking to XQL searches
  • B. Fixed filters allow users to select predefined data values, while dashboard drilldowns enable users to alter the scope of the data displayed by selecting filter values from the dashboard header
  • C. Fixed filters allow users to adjust the layout, while dashboard drilldowns provide links to external reports and/or dashboards
  • D. Fixed filters limit the data visible in widgets, while dashboard drilldowns allow users to download data from the dashboard in various formats

Answer: A

Explanation:
In Cortex XDR,fixed filtersanddashboard drilldownsare key features that enhance the interactivity and usability of dashboards. Fixed filters allow users to refine the data displayed in dashboard widgets by selecting predefined or dynamic values (e.g., time ranges, severities, or alertsources), adjusting the scope of the data presented. Dashboard drilldowns, on the other hand, enable users to interact with widget elements (e.
g., clicking on a chart bar) to gain deeper insights, such as navigating to detailed views, other dashboards, or executingXQL (XDR Query Language)searches for granular data analysis.
* Correct Answer Analysis (C):The statement in option C accurately describes the functionality:Fixed filters let users select predefined or dynamic values to adjust the scope, ensuring users can focus on specific subsets of data (e.g., alerts from a particular source).Dashboard drilldowns provide interactive insights or trigger contextual changes, like linking to XQL searches, allowing users to explore related data or perform detailed investigations directly from the dashboard.
* Why not the other options?
* A. Fixed filters allow users to select predefined data values, while dashboard drilldowns enable users to alter the scope of the data displayed by selecting filter values from the dashboard header: This is incorrect because drilldowns do not alter the scope via dashboard header filters; they provide navigational or query-based insights (e.g., linking to XQL searches).
Additionally, fixed filters support both predefined and dynamic values, not just predefined ones.
* B. Fixed filters limit the data visible in widgets, while dashboard drilldowns allow users to download data from the dashboard in various formats: While fixed filters limit data in widgets, drilldowns do not primarily facilitate data downloads. Downloads are handled via export functions, not drilldowns.
* D. Fixed filters allow users to adjust the layout, while dashboard drilldowns provide links to external reports and/or dashboards: Fixed filters do not adjust the dashboard layout; they filter data. Drilldowns can link to other dashboards but not typically to external reports, and their primary role is interactive data exploration, not just linking.
Exact Extract or Reference:
TheCortex XDR Documentation Portaldescribes dashboard features: "Fixed filters allow users to select predefined or dynamic values to adjust the scope of data in widgets. Drilldowns enable interactive exploration by linking to XQL searches or other dashboards for contextual insights" (paraphrased from the Dashboards and Widgets section). TheEDU-262: Cortex XDR Investigation and Responsecourse covers dashboard configuration, stating that "fixed filters refine data scope, and drilldowns provide interactive links to XQL queries or related dashboards" (paraphrased from course materials). ThePalo Alto Networks Certified XDR Engineer datasheetincludes "dashboards and reporting" as a key exam topic, encompassing fixed filters and drilldowns.
References:
Palo Alto Networks Cortex XDR Documentation Portal:https://docs-cortex.paloaltonetworks.com/ EDU-262: Cortex XDR Investigation and Response Course Objectives Palo Alto Networks Certified XDR Engineer Datasheet:https://www.paloaltonetworks.com/services/education
/certification#xdr-engineer


NEW QUESTION # 52
An engineer wants to automate the handling of alerts in Cortex XDR and defines several automation rules with different actions to be triggered based on specific alert conditions. Some alerts do not trigger the automation rules as expected. Which statement explains why the automation rules might not apply to certain alerts?

  • A. They only apply to new alerts grouped into incidents by the system and only alerts that generateincidents trigger automation actions
  • B. They can only be triggered by alerts with high severity; alerts with low or informational severity will not trigger the automation rules
  • C. They are executed in sequential order, so alerts may not trigger the correct actions if the rules are not configured properly
  • D. They can be applied to any alert, but they only work if the alert is manually grouped into an incident by the analyst

Answer: C

Explanation:
In Cortex XDR,automation rules(also known as response actions or playbooks) are used to automate alert handling based on specific conditions, such as alert type, severity, or source. These rules are executed in a defined order, and the first rule that matches an alert's conditions triggers its associated actions. If automation rules are not triggering as expected, the issue often lies in their configuration or execution order.
* Correct Answer Analysis (A):Automation rules areexecuted in sequential order, and each alert is evaluated against the rules in the order they are defined. If the rules are not configured properly (e.g., overly broad conditions in an earlier rule or incorrect prioritization), an alert may match an earlier rule and trigger its actions instead of the intended rule, or it may not match any rule due to misconfigured conditions. This explains why some alerts do not trigger the expected automation rules.
* Why not the other options?
* B. They only apply to new alerts grouped into incidents by the system and only alerts that generate incidents trigger automation actions: Automation rules can apply to both standalone alerts and those grouped into incidents. They are not limited to incident-related alerts.
* C. They can only be triggered by alerts with high severity; alerts with low or informational severity will not trigger the automation rules: Automation rules can be configured to trigger based on any severity level (high, medium, low, or informational), so this is not a restriction.
* D. They can be applied to any alert, but they only work if the alert is manually grouped into an incident by the analyst: Automation rules do not require manual incident grouping; they can apply to any alert based on defined conditions, regardless of incident status.
Exact Extract or Reference:
TheCortex XDR Documentation Portalexplains automation rules: "Automation rules are executed in sequential order, and the first rule matching an alert's conditions triggers its actions. Misconfigured rules or incorrect ordering can prevent expected actions from being applied" (paraphrased from the Automation Rules section). TheEDU-262: Cortex XDR Investigation and Responsecourse covers automation, stating that
"sequential execution of automation rules requires careful configuration to ensure the correct actions are triggered" (paraphrased from course materials). ThePalo Alto Networks Certified XDR Engineer datasheet includes "playbook creation and automation" as a key exam topic, encompassing automation rule configuration.
References:
Palo Alto Networks Cortex XDR Documentation Portal:https://docs-cortex.paloaltonetworks.com/ EDU-262: Cortex XDR Investigation and Response Course Objectives Palo Alto Networks Certified XDR Engineer Datasheet:https://www.paloaltonetworks.com/services/education
/certification#xdr-engineer


NEW QUESTION # 53
A mobile device management (MDM) system is configured per documentation, and after Cortex XDR agent deployment, many users show their operational status as "Partially Protected." What is a potential cause for this behavior?

  • A. The Safari Safeguard module has not been enabled for all websites.
  • B. URL filtering is currently disabled on the Malware Prevention Module.
  • C. Affected users are still using the Default Malware Prevention Module on Policy.
  • D. The Network and EDR Security Module is not set to auto-detect malicious URL filtering.

Answer: A


NEW QUESTION # 54
A multinational company with over 300,000 employees has recently deployed Cortex XDR in North America. The solution includes the Identity Threat Detection and Response (ITDR) add-on, and the Cortex team has onboarded the Cloud Identity Engine to the North American tenant. After waiting the required soak period and deploying enough agents to receive Identity and threat analytics detections, the team does not see user, group, or computer details for individuals from the European offices. What may be the reason for the issue?

  • A. The XDR tenant is not in the same region as the Cloud Identity Engine
  • B. The ITDR add-on is not compatible with the Cloud Identity Engine
  • C. The Cloud Identity Engine needs to be activated in all global regions
  • D. The Cloud Identity Engine plug-in has not been installed and configured

Answer: A

Explanation:
Palo Alto Networks enforces strict regional data privacy and compliance boundaries for identity management. For the Cloud Identity Engine (CIE) to successfully synchronize and share user, group, or computer metadata with a Cortex XDR/XSIAM tenant, both services must reside in the same geographical region.
If the Cortex team onboarded a Cloud Identity Engine instance that belongs to a different regional tenant or failed to align the CIE tenant location with the North American Cortex XDR tenant, cross-region data sharing will be blocked. This prevents the European office directory infrastructure from populating into that specific XDR console view.


NEW QUESTION # 55
......

PDF (New 2026) Actual Palo Alto Networks XDR-Engineer Exam Questions: https://validexam.pass4cram.com/XDR-Engineer-dumps-torrent.html