<?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: XQL Question - Cortex &amp;gt; Host Inventory &amp;gt; Applications Result View in Cortex XDR Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235131#M8609</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/102416"&gt;@kenlacrosse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a preset with all the applications data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;preset = host_inventory_applications &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Every part of the Inventory has it's own preset to work with XQL:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jmazzeo_0-1753964629327.png" style="width: 463px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/68671i0DB7B61BEE12CCE1/image-dimensions/463x196?v=v2" width="463" height="196" role="button" title="jmazzeo_0-1753964629327.png" alt="jmazzeo_0-1753964629327.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post answers your question, please mark it as the solution.&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jul 2025 12:24:15 GMT</pubDate>
    <dc:creator>jmazzeo</dc:creator>
    <dc:date>2025-07-31T12:24:15Z</dc:date>
    <item>
      <title>XQL Question - Cortex &gt; Host Inventory &gt; Applications Result View</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235061#M8606</link>
      <description>&lt;P&gt;I'm assuming that the result set shown on the page for Host Inventory &amp;gt; Applications is the product of an XQL query that we could write in Query Builder.&amp;nbsp; I'm looking to, sort of, duplicate and modify that XQL.&amp;nbsp; Does anyone know if that query is available and what the query is or where it might be found if it is available?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 23:31:46 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235061#M8606</guid>
      <dc:creator>kenlacrosse</dc:creator>
      <dc:date>2025-07-30T23:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: XQL Question - Cortex &gt; Host Inventory &gt; Applications Result View</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235092#M8607</link>
      <description>&lt;P&gt;Yes, the result set shown on the Host Inventory &amp;gt; Applications page in platforms like Cortex XDR or XSIAM is generally the product of an underlying XQL (XDR Query Language) query. While the exact query used by the UI is not typically exposed directly, you can replicate or approximate it using the Query Builder. By selecting the application_inventory dataset in Query Builder, you can construct a similar query to display application names, versions, paths, and hostnames. For example, a basic XQL query like dataset = application_inventory | fields agent_hostname, application_name, application_path, application_version | sort last_seen_time desc | limit 100 closely mirrors what you see on that page. To find the exact backend query, some users inspect browser network traffic using Developer Tools (F12), filtering for requests to endpoints like /query/execute or GraphQL, where parts of the query may be encoded. Additionally, if you want to enhance the query, you can join with the host_inventory dataset to include more host details like OS type and version. While Palo Alto doesn’t publish these UI queries openly, their official XQL documentation and Query Library provide many helpful starting points, and reaching out to their support team may yield further insight if needed.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 05:51:00 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235092#M8607</guid>
      <dc:creator>dustin85mark</dc:creator>
      <dc:date>2025-07-31T05:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: XQL Question - Cortex &gt; Host Inventory &gt; Applications Result View</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235098#M8608</link>
      <description>&lt;P&gt;Yes, the XQL query for Host Inventory &amp;gt; Applications is available and can be found on the Palo Alto Networks LIVEcommunity. A common starting point for listing host inventory applications is:&lt;/P&gt;
&lt;P&gt;`dataset = host_inventory | filter applications != null | arrayexpand applications | alter applications=json_extract(applications, "$.application_name"), software_vendor = json_extract(applications, "$.vendor"), software_verion = json_extract(applications, "$.version") | fields applications, host_name, software_vendor , software_verion`&lt;/P&gt;
&lt;P&gt;This query can be modified in the Query Builder to suit specific needs, such as filtering for particular applications or vendors. You can also explore the `host_inventory` dataset schema in the Query Builder's Integrated Developer Environment (IDE) to discover other relevant fields.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 06:36:01 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235098#M8608</guid>
      <dc:creator>bonnie25hell</dc:creator>
      <dc:date>2025-07-31T06:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: XQL Question - Cortex &gt; Host Inventory &gt; Applications Result View</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235131#M8609</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/102416"&gt;@kenlacrosse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a preset with all the applications data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;preset = host_inventory_applications &lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Every part of the Inventory has it's own preset to work with XQL:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jmazzeo_0-1753964629327.png" style="width: 463px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/68671i0DB7B61BEE12CCE1/image-dimensions/463x196?v=v2" width="463" height="196" role="button" title="jmazzeo_0-1753964629327.png" alt="jmazzeo_0-1753964629327.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post answers your question, please mark it as the solution.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 12:24:15 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xdr-discussions/xql-question-cortex-gt-host-inventory-gt-applications-result/m-p/1235131#M8609</guid>
      <dc:creator>jmazzeo</dc:creator>
      <dc:date>2025-07-31T12:24:15Z</dc:date>
    </item>
  </channel>
</rss>

