- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
Content translations are temporarily unavailable due to site maintenance. We apologize for any inconvenience. Visit our blog to learn more.
10-18-2024 02:05 PM
Hi,
Thanks for reaching our Live Community.
For this, I would recommend a correlation rule instead, you can use the below query as an example (you will need to modify it to fit your needs):
dataset = xdr_data
| filter event_type = ENUM.NETWORK and action_external_hostname in ("mail.google.com", "drive.google.com", "etc... any additional external resource you need to add")
| bin _time span=1d
| comp sum(action_total_upload) as uploaded_bytes, values(action_external_hostname) as domain_names by agent_hostname, actor_effective_username, _time
| filter uploaded_bytes > 1000000000
The below link shows you how to create a correlation rule:
If this solution solves your inquiry, please mark it as solved.
Regards.