FunkLocker Ransomware File Creation

Detects the creation of files with the ".funksec" extension, which is appended to encrypted files by the FunkLocker ransomware.

Sigma rule (View on GitHub)

 1title: FunkLocker Ransomware File Creation
 2id: 2c76a22b-702d-48fd-8fa9-e41e2fe203b3
 3status: experimental
 4description: Detects the creation of files with the ".funksec" extension, which is appended to encrypted files by the FunkLocker ransomware.
 5references:
 6    - https://www.broadcom.com/support/security-center/protection-bulletin/funksec-ransomware
 7    - https://www.pcrisk.com/removal-guides/31853-funklocker-funksec-ransomware
 8author: Saiprashanth Pulisetti ( @Prashanthblogs)
 9date: 2025-08-08
10tags:
11    - attack.t1486
12    - detection.emerging-threats
13logsource:
14    category: file_event
15    product: windows
16detection:
17    selection:
18        TargetFilename|endswith: '.funksec'
19    condition: selection
20falsepositives:
21    - Unlikely
22level: high

References

Related rules

to-top