<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Request for Query to Retrieve Endpoint Security Details. in Cortex XDR Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/request-for-query-to-retrieve-endpoint-security-details/m-p/1247652#M9104</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Prashanta_0-1770435336168.png" style="width: 279px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/70600i3524F4798FD78A65/image-dimensions/279x48?v=v2" width="279" height="48" role="button" title="Prashanta_0-1770435336168.png" alt="Prashanta_0-1770435336168.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You for reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Showing&lt;BR /&gt;e.os, e.agent is not a valid value.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 07 Feb 2026 03:37:29 GMT</pubDate>
    <dc:creator>Prashanta</dc:creator>
    <dc:date>2026-02-07T03:37:29Z</dc:date>
    <item>
      <title>Request for Query to Retrieve Endpoint Security Details.</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/request-for-query-to-retrieve-endpoint-security-details/m-p/1247164#M9086</link>
      <description>&lt;P data-start="171" data-end="181"&gt;Hi Team,&lt;/P&gt;
&lt;P data-start="183" data-end="283"&gt;I would like to create a query that provides the following information for endpoint security events:&lt;/P&gt;
&lt;UL data-start="285" data-end="489"&gt;
&lt;LI data-start="285" data-end="297"&gt;
&lt;P data-start="287" data-end="297"&gt;Severity&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="298" data-end="368"&gt;
&lt;P data-start="300" data-end="368"&gt;Artifact type (e.g., executable files or other relevant artifacts)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="369" data-end="386"&gt;
&lt;P data-start="371" data-end="386"&gt;Endpoint name&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="387" data-end="401"&gt;
&lt;P data-start="389" data-end="401"&gt;IP address&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="402" data-end="424"&gt;
&lt;P data-start="404" data-end="424"&gt;Windows OS version&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="425" data-end="464"&gt;
&lt;P data-start="427" data-end="464"&gt;Action taken (e.g., Block or Alert)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI data-start="465" data-end="489"&gt;
&lt;P data-start="467" data-end="489"&gt;Cortex Agent version&lt;BR /&gt;&lt;BR /&gt;Timeframe:&amp;nbsp; I will be set manually&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;LI-PRODUCT title="Cortex XDR" id="Cortex_XDR"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P data-start="491" data-end="591"&gt;Please let me know the best way to construct this query or if any additional details are required.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 06:00:42 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/request-for-query-to-retrieve-endpoint-security-details/m-p/1247164#M9086</guid>
      <dc:creator>Prashanta</dc:creator>
      <dc:date>2026-02-02T06:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: Request for Query to Retrieve Endpoint Security Details.</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/request-for-query-to-retrieve-endpoint-security-details/m-p/1247201#M9088</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/593283889"&gt;@Prashanta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Greetings for the day.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To create a query that retrieves security events along with endpoint metadata, you can use the &lt;STRONG&gt;alerts&lt;/STRONG&gt; dataset as the primary source. Since details such as the full Windows OS version and Cortex Agent version are most accurately maintained in the &lt;STRONG&gt;endpoints&lt;/STRONG&gt; dataset, a &lt;STRONG&gt;left join&lt;/STRONG&gt; is recommended to combine these two datasets.&lt;/P&gt;
&lt;H5&gt;XQL Query&lt;/H5&gt;
&lt;PRE&gt;&lt;CODE class="language-xql"&gt;dataset = alerts
| join type = left (dataset = endpoints) as e e.endpoint_name = host_name
| fields
    severity,
    category as artifact_type,
    host_name as endpoint_name,
    host_ip as ip_address,
    e.os_version as windows_os_version,
    action as action_taken,
    e.agent_version as cortex_agent_version
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;H5&gt;Field Explanations&lt;/H5&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Severity&lt;/STRONG&gt;: Retrieved directly from the alerts dataset.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Artifact Type&lt;/STRONG&gt;: The &lt;CODE&gt;category&lt;/CODE&gt; field identifies the type of security issue, such as Malware, Exploit, or Behavioral Threat.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Action Taken&lt;/STRONG&gt;: Displays the outcome of the event, for example &lt;CODE&gt;ENUM.PREVENTED__BLOCKED_&lt;/CODE&gt; or &lt;CODE&gt;Alert&lt;/CODE&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Windows OS Version &amp;amp; Agent Version&lt;/STRONG&gt;: Retrieved from the endpoints dataset through the join to ensure the most up-to-date inventory information for the endpoint.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;H5&gt;How to Use&lt;/H5&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Navigate to &lt;STRONG&gt;Investigation &amp;gt; Query Builder&lt;/STRONG&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Switch to the &lt;STRONG&gt;XQL&lt;/STRONG&gt; tab.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Paste the query into the editor.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Set the desired &lt;STRONG&gt;Time Range&lt;/STRONG&gt; using the manual selector.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Click &lt;STRONG&gt;Run&lt;/STRONG&gt;.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;STRONG&gt;Note:&lt;/STRONG&gt; If you need to view the specific executable file associated with an alert, you can add &lt;CODE&gt;action_file_name&lt;/CODE&gt; to the &lt;CODE&gt;fields&lt;/CODE&gt; list in the query.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you feel this has answered your query, please let us know by clicking like and on&amp;nbsp;&lt;STRONG&gt;"mark this as a Solution".&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;S. Subashkar Sekar&lt;/P&gt;</description>
      <pubDate>Mon, 02 Feb 2026 13:40:00 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/request-for-query-to-retrieve-endpoint-security-details/m-p/1247201#M9088</guid>
      <dc:creator>susekar</dc:creator>
      <dc:date>2026-02-02T13:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Request for Query to Retrieve Endpoint Security Details.</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/request-for-query-to-retrieve-endpoint-security-details/m-p/1247652#M9104</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Prashanta_0-1770435336168.png" style="width: 279px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/70600i3524F4798FD78A65/image-dimensions/279x48?v=v2" width="279" height="48" role="button" title="Prashanta_0-1770435336168.png" alt="Prashanta_0-1770435336168.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You for reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Showing&lt;BR /&gt;e.os, e.agent is not a valid value.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Feb 2026 03:37:29 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/request-for-query-to-retrieve-endpoint-security-details/m-p/1247652#M9104</guid>
      <dc:creator>Prashanta</dc:creator>
      <dc:date>2026-02-07T03:37:29Z</dc:date>
    </item>
  </channel>
</rss>

