Microsoft Defender (Advanced Hunting) : Detecting File copying

3.1k views Asked by At

I am trying to find if a user has copied some files from the shared folder to the local desktop. The Microsoft Defender (Advanced Hunting) only shows FileDeleted, FileCreated, FileRenamed, and Filemodified. What are other filters I should apply to see if the file has been copied from the shared folder?

Thank you!

1

There are 1 answers

0
Ani On

If you have not find the answer here is what I use

DeviceFileEvents | where FileName contains "name of file"

This will show u the file and Timestamp related to it whereth it was copied or opened and so on..

Cheers!