- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
Enhanced Security Measures in Place: To ensure a safer experience, we’ve implemented additional, temporary security measures for all users.
12-11-2023 09:25 PM
I want to sort my endpoint based on all application, like which application are using which specific endpoint? using an XQL query.
Cortex XDR #xql_query
12-11-2023 10:52 PM
Hello @Prashanta ,
Thank you for writing to live community.
You can use below query as a sample and modify it as per your requirement:
preset = host_inventory_applications
|fields Vendor, application_name, version, manager_name, endpoint_name
if you need the application on the number of endpoints, use below:
preset = host_inventory_applications
|fields Vendor, application_name, version, manager_name, endpoint_name
|comp count(endpoint_name) as counter by vendor, application_name, version, manager_name
|sort desc counter
Hope this helps!
Please mark the response as "Accept as Solution" if it answers your query.
Regards
12-27-2023 09:17 PM
Hello @aspatil
Thanks for the reply, If I add with this parameter OS type, OS version ...? how can i do that? like need windows information.
preset = host_inventory_applications
|fields Vendor, application_name, version, manager_name, endpoint_name,
12-28-2023 08:04 AM
Hello @Prashanta ,
You can use below and play around it:
preset = host_inventory_applications
|fields Vendor, application_name, version, manager_name, endpoint_name
|join (preset = host_inventory_endpoints | fields endpoint_name , operating_system, os_type, endpoint_type )
as ep ep.endpoint_name = endpoint_name
Hope this helps!
Please mark the response as "Accept as Solution" if it answers your query.
12-29-2023 07:17 PM
Hello @aspatil
Thanks for the reply, I need the OS_version also like, Windows 10, 10.0.10240
i can't get the os version with query, but it exists on host inventory > application > operating system > os version.
Regards.
prashanta
01-18-2024 07:17 AM
Hello @Prashanta ,
preset = host_inventory_applications
|fields Vendor, application_name, version, manager_name, endpoint_name
|join(dataset = endpoints | fields endpoint_name ,operating_system, os_version, platform, endpoint_type)
as ep ep.endpoint_name = endpoint_name
Hope this helps!
Please mark the response as "Accept as Solution" if it answers your query.
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!