-
Notifications
You must be signed in to change notification settings - Fork 7
GRR Stats
Karneades edited this page Apr 25, 2018
·
1 revision
Different reports can be generated in grrserver.tld/#/stats/. However, if you would like to genarate quick stats, use the following command to see an overview about which flow type you how often use.
PS> (Get-GRRHunt).huntid.substring(12) | % { (get-grrhuntinfo $_).flow_name} | group | select name,count | sort count -Desc
Name Count
---- -----
RegistryFinder 4
Interrogate 3
FileFinder 2
ListProcesses 1
...