@Scott Moseman , @Onno van den Berg How can I create scripts to generate this? ıf ı managed to create this will be alert still coming?
These are scripts which I have used in labs to create a large amount of files to trigger the anomaly alert. You will only get the alert once if the anomaly happens once. It will exist in the Unusual File Anomaly dashboard where you can review the details and clear the alert.
Linux Clients
$ cat create.sh
#!/usr/bin/bash
for i in {000000..100000}
do
echo QWERTY > "file${i}.txt"
done
Windows Clients
> type create.bat
@ECHO ON
for /L %%i in (1,1,100000) do fsutil file createnew file%%i.tmp 4096
Thanks,
Scott