- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
05-24-2023 09:30 AM
Hello Everyone,
I have a following question: Since XDR agents are able to detect unmanaged assets in their network (without Broker VM), how can I get that information via XQL ?
Any information will be usefully.
Thank you
05-24-2023 09:23 PM
Hi @Retired Member
For your use case to detect unmanaged assets in network (without Broker VM), if those endpoints are domain joined you can leverage the Cloud Identity Engine dataset (pan_dss_raw) to cross-reference the data with endpoints data to identify assets which are a part of the organization domain but are not in the endpoints dataset.
XQL query for reference:
dataset = pan_dss_raw
| fields name,ou,os,type
| filter type= "computer"
| dedup name
| filter name not in (dataset=endpoints | alter hostname = lowercase(endpoint_name) | fields hostname )
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!