- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
07-18-2023 03:57 PM
07-18-2023 07:52 PM - edited 07-18-2023 07:53 PM
Hi @indy47
Thank you for writing to live community!
You may start with the following XQL query to begin your investigation and tune your query and include relevant fields.
dataset = xdr_data // Using the xdr dataset
|filter event_type=FILE
| alter Drive_Type = json_extract(to_json_string(action_file_device_info),"$.storage_device_drive_type")
| filter drive_type = "2" // filter Storage Device Drive type with value 2 which is for 'Removable Media'
Note: action_file_device_info is the field here which contains storage device info.
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!