AT
02/15/2025, 12:12 AMRebecca Cowart
02/17/2025, 3:18 PMFG
02/18/2025, 2:49 PMSELECT hash.md5,hash.sha256,file.path,file.directory,file.filename,file.mode,file.size,file.mtime,file.ctime,file.btime,file.symlink,file.type FROM file LEFT JOIN hash ON (file.path = hash.path) WHERE file.type='regular' AND (file.path like "/Users/%/Downloads/%" OR file.path like "/Users/%/Desktop/%" OR file.path like "C:\\users\\%\\Downloads\\%" OR file.path like "C:\\users\\%\\Desktop\\%");
FG
02/18/2025, 2:52 PMSELECT * FROM `your_dataset.osquery_schedule` where denylisted = 1 LIMIT 1000
FG
02/18/2025, 2:53 PMKathy Satterlee
02/18/2025, 11:27 PMSELECT * FROM hash WHERE path LIKE '/%%'
would pretty reliably trigger the watchdog.AT
02/19/2025, 12:13 AM