feat(threat-hunting): FileFix detection

This commit is contained in:
Ming Di Leom 2025-06-30 08:55:47 +00:00
parent 1df78c65c5
commit ed06d65ce4
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 10 additions and 0 deletions

View File

@ -750,6 +750,16 @@ References: [1](https://thedfirreport.com/2025/03/31/fake-zoom-ends-in-blacksuit
| rename Processes.* AS *, signature_id AS EventCode, signature AS EventDescription
```
## FileFix detection
References: [1](https://www.mobile-hacker.com/2025/06/24/introducing-filefix-a-new-alternative-to-clickfix-attacks/)
SPL:
```spl
| tstats summariesonly=true allow_old_summaries=true fillnull_value="unknown" count FROM datamodel=Endpoint.Processes WHERE index="windows" Processes.signature_id=4688 Processes.parent_process_name IN ("msedge.exe", "msedgewebview2.exe", "chrome.exe", "firefox.exe") Processes.process_name IN ("cmd.exe", "powershell.exe", "pwsh.exe", "sh.exe", "bash.exe", "wscript.exe", "cscript.exe", "certutil.exe", "mshta.exe", "bitsadmin.exe") BY index, host, Processes.signature_id, Processes.signature, Processes.parent_process, Processes.process, Processes.process_name, Processes.user, _time span=1s
| rename Processes.* AS *, signature_id AS EventCode, signature AS EventDescription
```
## Gootloader IOC
References: [1](https://redcanary.com/blog/gootloader/)