Hacktool - EDR-Freeze Execution

Detects execution of EDR-Freeze, a tool that exploits the MiniDumpWriteDump function and WerFaultSecure.exe to suspend EDR and Antivirus processes on Windows. EDR-Freeze leverages a race-condition attack to put security processes into a dormant state by suspending WerFaultSecure at the moment it freezes the target process. This technique does not require kernel-level exploits or BYOVD, but instead abuses user-mode functionality to temporarily disable monitoring by EDR or Antimalware solutions.

Sigma rule (View on GitHub)

 1title: Hacktool - EDR-Freeze Execution
 2id: c598cc0c-9e70-4852-b9eb-8921af79f598
 3status: experimental
 4description: |
 5    Detects execution of EDR-Freeze, a tool that exploits the MiniDumpWriteDump function and WerFaultSecure.exe to suspend EDR and Antivirus processes on Windows.
 6    EDR-Freeze leverages a race-condition attack to put security processes into a dormant state by suspending WerFaultSecure at the moment it freezes the target process.
 7    This technique does not require kernel-level exploits or BYOVD, but instead abuses user-mode functionality to temporarily disable monitoring by EDR or Antimalware solutions.    
 8date: 2025-09-24
 9references:
10    - https://www.zerosalarium.com/2025/09/EDR-Freeze-Puts-EDRs-Antivirus-Into-Coma.html
11    - https://github.com/TwoSevenOneT/EDR-Freeze
12tags:
13    - attack.defense-evasion
14    - attack.t1562.001
15logsource:
16    category: process_creation
17    product: windows
18detection:
19    selection_img:
20        Image|contains: '\EDR-Freeze'
21        Image|endswith: '.exe'
22    selection_imphash:
23        Hashes|contains:
24            - 'IMPHASH=1195F7935954A2CD09157390C33F8E8C'
25            - 'IMPHASH=129F58DE3D687FB7F012BF6C3D679997'
26            - 'IMPHASH=2C617A175D0086251642C6619F7CC8BA'
27            - 'IMPHASH=8828F0B906F7844358FB92A899E9520F'
28            - 'IMPHASH=AF76D95157EC554DC1EF178E4E66D447'
29            - 'IMPHASH=E1B04316B61ACA31DD52ABBEC0A37FD5'
30    condition: 1 of selection_*
31falsepositives:
32    - Unlikely
33level: high

References

Related rules

to-top