Which scripting language will allow the use of the Query Builder in Cortex XDR to show the top five accounts with failed Windows logons in the past 24 hours? (Choose one answer)
In the Cortex ecosystem, specifically within Cortex XDR and Cortex XSIAM, XQL (Cortex Query Language) is the mandatory language for all data retrieval and analysis tasks.
Query Builder Integration: The Query Builder is the graphical user interface (GUI) designed to help analysts construct XQL queries without needing to memorize syntax. When you use the Query Builder to select filters, datasets, and time ranges, it is generating an XQL statement in the background.
Aggregations: To show the "top five" of a specific category (like failed logons), XQL uses functions like comp (compute), count, and sort. This allows the system to process billions of logs in the Cortex Data Lake to return the specific dataset requested.
Real-world use: An analyst would use XQL to search the authentication dataset, filter for result = FAILED, and then aggregate by user to find the most frequent occurrences.
Why other options are incorrect:
PowerShell (A) and Python (D): These are used for endpoint management (scripts run on the host) or automation in XSOAR/XSIAM playbooks, but they cannot query the Cortex Data Lake directly via the Query Builder.
JavaScript (B): This is not used for data querying within the Palo Alto Networks security platform.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit