General Exam Tips
- 1.Read every answer choice fully before committing — Broker VM vs Engine, BIOC vs IOC, and exception vs exclusion pairs often differ on one precise word that changes the correct answer
- 2.The exam is 90 minutes for roughly 59 questions — budget about 1.5 minutes per question. Non-native English speakers can request a 30-minute extension; request it in advance if eligible
- 3.Scaled scoring (860 on a 300-1000 range) with a domain-level breakdown means you cannot compensate for a weak domain by acing another — study all four domains, especially Integration and Automation at 30%
- 4.Scenario questions almost always embed a component clue (on-prem system, third-party syslog, endpoint host, multi-source pattern) — identify which XSIAM component or content type that clue points to BEFORE reading the answer options
- 5.When a question describes something happening 'automatically' (alert grouping into incidents, scheduled content updates), do not pick an answer implying manual analyst action — XSIAM automates these by design
- 6.Marketplace-first thinking is tested repeatedly: if a question describes a common third-party product integration need, the expected answer is almost always 'check/install the Cortex Marketplace content pack,' not 'build a custom integration'
- 7.Troubleshooting questions test root-cause differentiation — a parsing error, a quota overage, and a connectivity/certificate issue produce different symptoms; match the symptom to the correct root cause category
- 8.Do not assume every automation task uses the Broker VM — playbook tasks requiring local execution against on-prem systems depend on the Engine, a separate component
Quick Navigation
Planning and Installation
Must-Know Facts
- Broker VM applets and their purposes: Syslog Collector, Database Collector, File Collector, and PAN-OS/firewall log forwarding, plus agent traffic proxying
- Engine's role as a local automation execution node, distinct from the Broker VM's data-collection role
- XDR agent deployment methods: manual installer, GPO/SCCM mass deployment, bulk installer packages for Windows, macOS, and Linux
- RBAC built on roles and permission sets that scope tenant access to least privilege
- Licensing tiers and EPS/storage quota sizing considerations before onboarding new data sources
- Network/port/proxy/certificate requirements for agents and Broker VMs to reach the cloud tenant
- Content update scheduling behavior and its implications for change-controlled environments
Common Traps
Confusing Pairs
Scenario Tips
A question describes needing to collect syslog from a third-party firewall on an isolated network segment that cannot reach the cloud tenant directly...
Deploy a Broker VM with the Syslog Collector applet enabled. It bridges the isolated network to the tenant without exposing endpoints directly to the internet
An Engine is tempting because it also sits on-prem, but the Engine executes automation tasks, not log collection — Broker VM is correct for data ingestion
A question describes onboarding hundreds of Windows endpoints across an Active Directory domain and asks for the most efficient agent deployment method...
GPO or SCCM-based mass deployment, since the endpoints are domain-joined and deployment needs to scale efficiently
Manual installation is technically possible but does not scale efficiently to hundreds of domain-joined endpoints — the domain-joined detail is the clue pointing to GPO/SCCM
Last-Minute Facts
Integration and Automation
Must-Know Facts
- Endpoint data comes ONLY from the XDR agent — not from a Broker VM applet
- Network data onboarding via Panorama/firewall log forwarding or the Broker VM's PAN-OS applet
- Cloud data onboarding via AWS/Azure/GCP connectors pulling audit/flow/configuration logs
- Identity data onboarding via integrations with Entra ID, Okta, or Active Directory
- Cortex Marketplace content packs bundle integrations, scripts, playbooks, dashboards, and parsing rules — always check the Marketplace before custom development
- Threat intelligence feed integration (TAXII/STIX, AutoFocus) enriches IOC matching but does not itself author detection rules
- Playbooks automate alert response and can trigger alert-type-specific sub-playbooks
- Content pack dependencies must be resolved before a dependent pack functions correctly
- Onboarding is incomplete until fields are correctly mapped to XDM — raw ingestion alone is not sufficient
Common Traps
Confusing Pairs
Scenario Tips
A question describes needing bidirectional alert sync with a well-known, widely-used third-party EDR product...
Check the Cortex Marketplace for an existing content pack for that product before building anything custom
Building a custom XSOAR SDK integration is technically possible but is not the first step — the exam expects Marketplace-first thinking for well-known products
A question describes cloud audit logs newly onboarded from AWS, with correlation rules that reference standard XDM network fields failing to match any of the new data...
The raw fields have not been correctly mapped to the Cortex Data Model — onboarding is incomplete until XDM mapping is verified
A license or content pack issue would typically produce a more visible ingestion failure, not selectively missed field matches on an otherwise-flowing source
Last-Minute Facts
Content Optimization
Must-Know Facts
- BIOC = XQL-authored behavioral pattern detection against enriched event data
- IOC = static match against a known-bad atomic artifact (hash, IP, domain, URL)
- Correlation rule = XQL-authored detection spanning multiple events/datasets over time, often mapped to MITRE ATT&CK
- XQL pipe-stage syntax: dataset selection first, then chained stages (filter, fields, alter, comp, join, union, bin, arrayexpand, sort, limit, dedup)
- Parsing rules preprocess/filter/enrich/route RAW logs; XDM mapping normalizes parsed fields onto the canonical schema afterward
- Alert severity/scoring determines prioritization and contributes to automatic incident escalation
- Alert grouping into incidents (Story view) happens automatically based on shared causality chains
- Dashboards and widgets are built from stored XQL queries, not a separate data source
- A dataset stores normalized data; a stored query is a saved, reusable query against that data — not the same thing
Common Traps
Confusing Pairs
Scenario Tips
A question describes detecting a process spawning from an unusual parent with suspicious command-line arguments, evaluated per host event...
Author a BIOC rule — this is a behavioral pattern evaluated against a single enriched event stream
An IOC rule is tempting if the question mentions a hash, but a described BEHAVIOR pattern (parent-child relationship, command-line anomaly) always points to BIOC, not IOC
A question describes a multi-stage attack spanning firewall logs, endpoint telemetry, and identity events over a time window, mapped to a MITRE ATT&CK technique...
Author a correlation rule spanning the multiple relevant datasets
A BIOC scoped to only one data source (e.g., endpoint) would miss the firewall and identity components described in the multi-source scenario
Last-Minute Facts
Maintenance and Troubleshooting
Must-Know Facts
- Content pack updates can change bundled integrations, playbooks, or parsing rules and may require dependency resolution
- Detection exceptions modify future rule behavior; alert exclusions filter already-raised alerts without changing rule logic
- Data ingestion troubleshooting differentiates parsing errors (malformed/missing XDM fields) from quota overages (throttled/rejected ingestion)
- EPS and storage quota monitoring catches licensing overages before they create detection coverage gaps
- Agent connectivity issues are frequently proxy or certificate problems, not licensing issues
- Playbook task failures against on-prem systems often trace back to Engine configuration or connectivity, not the Broker VM
- Tenant configuration backup/export supports operational continuity and tenant migration
Common Traps
Confusing Pairs
Scenario Tips
A question describes a correlation rule that stopped matching new data from one source right after a routine content pack update, even though the source is still ingesting logs...
The content pack update likely changed a bundled parsing rule, altering how fields map to XDM for that source
License expiration or agent uninstallation would typically stop ingestion entirely, not selectively break field-level matching while logs keep flowing
A question describes a playbook task against an on-prem legacy system repeatedly timing out, while the Broker VM shows healthy status...
Check whether an Engine is deployed and properly configured to reach that on-premises system
Since the Broker VM is already confirmed healthy, checking Broker VM applets again is a distractor — the Engine handles local automation task execution, a separate component